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

ChannelRefreshed() public method

public ChannelRefreshed ( System.ServiceModel.ChannelFactory channelFactory, IChannel oldChannel, IChannel newChannel ) : void
channelFactory System.ServiceModel.ChannelFactory
oldChannel IChannel
newChannel IChannel
return void
		public override void ChannelRefreshed(ChannelFactory channelFactory, IChannel oldChannel, IChannel newChannel)
		{
			if (onChannelRefreshed != null)
			{
				onChannelRefreshed(channelFactory, oldChannel, newChannel);
			}
		}