Castle.Facilities.WcfIntegration.Proxy.WcfRemotingInterceptor.WcfRemotingInterceptor C# (CSharp) Method

WcfRemotingInterceptor() public method

public WcfRemotingInterceptor ( WcfClientExtension clients, IWcfChannelHolder channelHolder ) : System
clients WcfClientExtension
channelHolder IWcfChannelHolder
return System
		public WcfRemotingInterceptor(WcfClientExtension clients, IWcfChannelHolder channelHolder)
		{
			if (channelHolder == null)
			{
				throw new ArgumentException("The given Proxy is not valid WCF dynamic proxy.");
			}

			this.channelHolder = channelHolder;
			pipeline = CreateChannelPipeline(clients);
		}