<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Using Ninject.Extensions.Interception Part 1 : The Basics</title>
	<atom:link href="http://innovatian.com/2010/03/using-ninject-extensions-interception-part-1-the-basics/feed/" rel="self" type="application/rss+xml" />
	<link>http://innovatian.com/2010/03/using-ninject-extensions-interception-part-1-the-basics/</link>
	<description></description>
	<lastBuildDate>Tue, 20 Dec 2011 21:26:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Paul Roe</title>
		<link>http://innovatian.com/2010/03/using-ninject-extensions-interception-part-1-the-basics/comment-page-1/#comment-338</link>
		<dc:creator>Paul Roe</dc:creator>
		<pubDate>Fri, 16 Sep 2011 13:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://innovatian.com/?p=278#comment-338</guid>
		<description>Doing my best to use your examples and encountering the following problem:

Using your nuget install against a command line helloworld application I get this error:4. nuget packages dont work I get the following error:&#039;Ninject.Syntax.IBindingWhenInNamedWithOrOnSyntax&#039; does not contain a definition for &#039;Intercept&#039; and no extension method &#039;Intercept&#039; accepting a first argument of type &#039;Ninject.Syntax.IBindingWhenInNamedWithOrOnSyntax&#039; could be found (are you missing a using directive or an assembly reference?)	C:CodePlaygroundNinjectNinjectHelloWorldNinjectHelloWorldProgram.cs	28	44	NinjectHelloWorldHere&#039;s the code I&#039;m using:

using Ninject.Extensions.Interception;

IKernel kernel = new StandardKernel();
kernel.Bind().To().Named(&quot;StandardHello&quot;);
kernel.Bind().To().Named(&quot;FunkyHello&quot;);

ActionInterceptor interceptor = new ActionInterceptor(invocation =&gt; Console.WriteLine(&quot;Executing!&quot;));
kernel.Bind().ToSelf().Intercept().With(interceptor);</description>
		<content:encoded><![CDATA[<p>Doing my best to use your examples and encountering the following problem:</p>
<p>Using your nuget install against a command line helloworld application I get this error:4. nuget packages dont work I get the following error:&#8217;Ninject.Syntax.IBindingWhenInNamedWithOrOnSyntax&#8217; does not contain a definition for &#8216;Intercept&#8217; and no extension method &#8216;Intercept&#8217; accepting a first argument of type &#8216;Ninject.Syntax.IBindingWhenInNamedWithOrOnSyntax&#8217; could be found (are you missing a using directive or an assembly reference?)	C:CodePlaygroundNinjectNinjectHelloWorldNinjectHelloWorldProgram.cs	28	44	NinjectHelloWorldHere&#8217;s the code I&#8217;m using:</p>
<p>using Ninject.Extensions.Interception;</p>
<p>IKernel kernel = new StandardKernel();<br />
kernel.Bind().To().Named(&#8220;StandardHello&#8221;);<br />
kernel.Bind().To().Named(&#8220;FunkyHello&#8221;);</p>
<p>ActionInterceptor interceptor = new ActionInterceptor(invocation =&gt; Console.WriteLine(&#8220;Executing!&#8221;));<br />
kernel.Bind().ToSelf().Intercept().With(interceptor);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pankaj Banga</title>
		<link>http://innovatian.com/2010/03/using-ninject-extensions-interception-part-1-the-basics/comment-page-1/#comment-49</link>
		<dc:creator>Pankaj Banga</dc:creator>
		<pubDate>Tue, 17 Aug 2010 11:44:58 +0000</pubDate>
		<guid isPermaLink="false">http://innovatian.com/?p=278#comment-49</guid>
		<description>unable to configure class level interception in Silverlight.&lt;br&gt;&lt;br&gt;kernel.Bind&lt;ViewModel&gt;().ToSelf().Intercept().With&lt;FlagInterceptor&gt;();&lt;br&gt;&lt;br&gt;there is no Intercept() method in Silverlight version. Also, is there a way to configure interception at container level, I want every class that get resolved through the container to use particular interceptor.</description>
		<content:encoded><![CDATA[<p>unable to configure class level interception in Silverlight.</p>
<p>kernel.Bind&lt;ViewModel&gt;().ToSelf().Intercept().With&lt;FlagInterceptor&gt;();</p>
<p>there is no Intercept() method in Silverlight version. Also, is there a way to configure interception at container level, I want every class that get resolved through the container to use particular interceptor.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pankaj Banga</title>
		<link>http://innovatian.com/2010/03/using-ninject-extensions-interception-part-1-the-basics/comment-page-1/#comment-48</link>
		<dc:creator>Pankaj Banga</dc:creator>
		<pubDate>Tue, 17 Aug 2010 11:35:54 +0000</pubDate>
		<guid isPermaLink="false">http://innovatian.com/?p=278#comment-48</guid>
		<description>unable to configure class level interception in Silverlight.&lt;br&gt;&lt;br&gt;kernel.Bind&lt;ViewModel&gt;().ToSelf().Intercept().With&lt;FlagInterceptor&gt;();&lt;br&gt;&lt;br&gt;there is no Intercept() method in Silverlight version. Also, is there a way to configure interception at container level, I want every class that get resolved through the container to use particular interceptor.</description>
		<content:encoded><![CDATA[<p>unable to configure class level interception in Silverlight.</p>
<p>kernel.Bind&lt;ViewModel&gt;().ToSelf().Intercept().With&lt;FlagInterceptor&gt;();</p>
<p>there is no Intercept() method in Silverlight version. Also, is there a way to configure interception at container level, I want every class that get resolved through the container to use particular interceptor.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Using Ninject.Extensions.Interception Part 2 : Working with Interceptors</title>
		<link>http://innovatian.com/2010/03/using-ninject-extensions-interception-part-1-the-basics/comment-page-1/#comment-15</link>
		<dc:creator>Using Ninject.Extensions.Interception Part 2 : Working with Interceptors</dc:creator>
		<pubDate>Sat, 13 Mar 2010 03:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://innovatian.com/?p=278#comment-15</guid>
		<description>[...] Part 1 we covered the basics of the extension and introduced the IInterceptor interface. Now we can move [...]</description>
		<content:encoded><![CDATA[<p>[...] Part 1 we covered the basics of the extension and introduced the IInterceptor interface. Now we can move [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By:  toshihiro</title>
		<link>http://innovatian.com/2010/03/using-ninject-extensions-interception-part-1-the-basics/comment-page-1/#comment-11</link>
		<dc:creator> toshihiro</dc:creator>
		<pubDate>Thu, 11 Mar 2010 20:22:29 +0000</pubDate>
		<guid isPermaLink="false">http://innovatian.com/?p=278#comment-11</guid>
		<description>It&#039;s Helpful article.</description>
		<content:encoded><![CDATA[<p>It&#39;s Helpful article.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

