1 type derived from ChannelManagerBase
System.ServiceModel.Primitives (1)
netstandard.cs (1)
1326public abstract partial class ChannelFactoryBase : System.ServiceModel.Channels.ChannelManagerBase, System.ServiceModel.Channels.IChannelFactory, System.ServiceModel.ICommunicationObject
16 references to ChannelManagerBase
System.ServiceModel (1)
netstandard.cs (1)
43[assembly: TypeForwardedTo(typeof(ChannelManagerBase))]
System.ServiceModel.NetFramingBase (6)
System\ServiceModel\Channels\FramingChannels.cs (3)
21private FramingDuplexSessionChannel(ChannelManagerBase manager, IConnectionOrientedTransportFactorySettings settings, 27protected FramingDuplexSessionChannel(ChannelManagerBase factory, IConnectionOrientedTransportFactorySettings settings, 152public ClientFramingDuplexSessionChannel(ChannelManagerBase factory, IConnectionOrientedTransportChannelFactorySettings settings,
System\ServiceModel\Channels\OutputChannel.cs (1)
13protected OutputChannel(ChannelManagerBase manager)
System\ServiceModel\Channels\StreamedFramingRequestChannel.cs (1)
22public StreamedFramingRequestChannel(ChannelManagerBase factory, IConnectionOrientedTransportChannelFactorySettings settings,
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
24ChannelManagerBase manager,
System.ServiceModel.Primitives (2)
netstandard.cs (2)
1313protected ChannelBase(System.ServiceModel.Channels.ChannelManagerBase channelManager) { } 1318protected System.ServiceModel.Channels.ChannelManagerBase Manager { get { return default; } }
System.ServiceModel.Primitives.Tests (4)
ServiceModel\ThrowingChannelBase.cs (1)
15protected ThrowingChannelBase(ChannelManagerBase manager, Exception exception, TChannel innerChannel) : base(manager)
ServiceModel\ThrowingOnCloseBindingElement.cs (3)
247public ThrowingInputChannel(ChannelManagerBase manager, Exception exception, T innerChannel) : base(manager, exception, innerChannel) 268public ThrowingDuplexChannel(ChannelManagerBase manager, Exception exception, IDuplexChannel innerChannel) : base(manager, exception, innerChannel) 286public ThrowingDuplexSessionChannel(ChannelManagerBase manager, Exception exception, IDuplexSessionChannel innerChannel) : base(manager, exception, innerChannel)
UnitTests.Common (3)
MockChannelBase.cs (2)
13private readonly ChannelManagerBase _manager; 15public MockChannelBase(ChannelManagerBase manager, MessageEncoderFactory encoderFactory, EndpointAddress address)
MockRequestChannel.cs (1)
22public MockRequestChannel(ChannelManagerBase manager, MessageEncoderFactory encoderFactory, EndpointAddress address, Uri via)