Castle.Facilities.WcfIntegration.AdHocChannelFactoryAware.Apply C# (CSharp) Method

Apply() private static method

private static Apply ( System.ServiceModel.ChannelFactory channelFactory, Action action ) : void
channelFactory System.ServiceModel.ChannelFactory
action Action
return void
		private static void Apply(ChannelFactory channelFactory, Action<ChannelFactory> action)
		{
			if (action != null)
			{
				action(channelFactory);
			}
		}

Same methods

AdHocChannelFactoryAware::Apply ( System.ServiceModel.ChannelFactory channelFactory, IChannel channel, IChannel>.Action action ) : void