2 interfaces inheriting from IContextChannel
System.ServiceModel.Primitives (2)
netstandard.cs (2)
785public partial interface IClientChannel : System.IDisposable, System.ServiceModel.Channels.IChannel, System.ServiceModel.ICommunicationObject, System.ServiceModel.IContextChannel, System.ServiceModel.IExtensibleObject<System.ServiceModel.IContextChannel>
2 implementations of IContextChannel
System.ServiceModel.Primitives (2)
netstandard.cs (2)
507protected partial class ChannelBase<T> : System.IDisposable, System.ServiceModel.Channels.IChannel, System.ServiceModel.Channels.IOutputChannel, System.ServiceModel.Channels.IRequestChannel, System.ServiceModel.IClientChannel, System.ServiceModel.ICommunicationObject, System.ServiceModel.IContextChannel, System.ServiceModel.IExtensibleObject<System.ServiceModel.IContextChannel> where T : class
34 references to IContextChannel
Binding.Http.IntegrationTests (3)
BasicHttpBindingTests.4.0.0.cs (2)
259using (new OperationContextScope((IContextChannel)serviceProxy)) 303using (new OperationContextScope((IContextChannel)serviceProxy))
OperationContextTests.cs (1)
45var scope = new OperationContextScope((IContextChannel)serviceProxy);
Binding.ReliableSession.IntegrationTests (2)
NetHttpBindingTests.cs (1)
312using (var scope = new OperationContextScope((IContextChannel)serviceProxy))
WSHttpBindingTests.cs (1)
312using (var scope = new OperationContextScope((IContextChannel)serviceProxy))
Binding.Tcp.IntegrationTests (3)
OperationContextAsyncFlowTests.cs (3)
31using (var scope = new OperationContextScope((IContextChannel)serviceProxy)) 66using (var scope = new OperationContextScope((IContextChannel)serviceProxy)) 74using (var scope2 = new OperationContextScope((IContextChannel)serviceProxy))
Client.ClientBase.IntegrationTests (5)
ClientBaseTests.4.0.0.cs (1)
775using (OperationContextScope scope = new OperationContextScope((IContextChannel)serviceProxy))
MessageInspectorTestHelpers.cs (1)
53using (new OperationContextScope((IContextChannel)base.InnerChannel))
SessionTests.cs (3)
249var c = OperationContext.Current.Channel; 519var ctxChannel = (IContextChannel)s_channel;
Client.TypedClient.IntegrationTests (1)
TypedProxyTests.4.0.0.cs (1)
596using (new OperationContextScope((IContextChannel)serviceProxy))
Contract.XmlSerializer.IntegrationTests (1)
XmlSerializerFormatTest.4.1.0.cs (1)
82using (OperationContextScope scope = new OperationContextScope((IContextChannel)serviceProxy))
dotnet-svcutil.xmlserializer.IntegrationTests (1)
src\System.Private.ServiceModel\tests\Scenarios\Contract\XmlSerializer\XmlSerializerFormatTest.4.1.0.cs (1)
82using (OperationContextScope scope = new OperationContextScope((IContextChannel)serviceProxy))
Security.TransportSecurity.IntegrationTests (4)
Http\ClientCredentialTypeTests.4.1.0.cs (2)
43using (var scope = new OperationContextScope((IContextChannel)serviceProxy)) 104using (var scope = new OperationContextScope((IContextChannel)serviceProxy))
Https\ClientCredentialTypeTests.4.1.0.cs (2)
58using (var scope = new OperationContextScope((IContextChannel)serviceProxy)) 133using (var scope = new OperationContextScope((IContextChannel)serviceProxy))
System.ServiceModel (1)
netstandard.cs (1)
169[assembly: TypeForwardedTo(typeof(IContextChannel))]
System.ServiceModel.Primitives (13)
netstandard.cs (13)
518bool System.ServiceModel.IContextChannel.AllowOutputBatching { get { return default; } set { } } 519System.ServiceModel.Channels.IInputSession System.ServiceModel.IContextChannel.InputSession { get { return default; } } 520System.ServiceModel.EndpointAddress System.ServiceModel.IContextChannel.LocalAddress { get { return default; } } 521System.TimeSpan System.ServiceModel.IContextChannel.OperationTimeout { get { return default; } set { } } 522System.ServiceModel.Channels.IOutputSession System.ServiceModel.IContextChannel.OutputSession { get { return default; } } 523System.ServiceModel.EndpointAddress System.ServiceModel.IContextChannel.RemoteAddress { get { return default; } } 524string System.ServiceModel.IContextChannel.SessionId { get { return default; } } 525System.ServiceModel.IExtensionCollection<System.ServiceModel.IContextChannel> System.ServiceModel.IExtensibleObject<System.ServiceModel.IContextChannel>.Extensions { get { return default; } } 815public partial interface IContextChannel : System.ServiceModel.Channels.IChannel, System.ServiceModel.ICommunicationObject, System.ServiceModel.IExtensibleObject<System.ServiceModel.IContextChannel> 930public OperationContext(System.ServiceModel.IContextChannel channel) { } 942public System.ServiceModel.IContextChannel Channel { get { return default; } } 946public OperationContextScope(System.ServiceModel.IContextChannel channel) { }