Castle.Facilities.WcfIntegration.WcfContextChannel.For C# (CSharp) Method

For() public static method

public static For ( object target ) : IContextChannel
target object
return IContextChannel
		public static IContextChannel For(object target)
		{
			var channelHolder = target as IWcfChannelHolder;
			return (channelHolder != null) ? channelHolder.Channel as IContextChannel : null;
		}
	}
WcfContextChannel