Home
last modified time | relevance | path

Searched refs:GetChannelBinding (Results 1 – 25 of 53) sorted by relevance

123

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A DTransportContext.cs15 public abstract ChannelBinding GetChannelBinding(ChannelBindingKind kind); in GetChannelBinding() method in System.Net.TransportContext
31 public override ChannelBinding GetChannelBinding(ChannelBindingKind kind) in GetChannelBinding() method in System.Net.ConnectStreamContext
33 return connectStream.GetChannelBinding(kind); in GetChannelBinding()
49 public override ChannelBinding GetChannelBinding(ChannelBindingKind kind) in GetChannelBinding() method in System.Net.SslStreamContext
51 return sslStream.GetChannelBinding(kind); in GetChannelBinding()
67 public override ChannelBinding GetChannelBinding(ChannelBindingKind kind) in GetChannelBinding() method in System.Net.HttpListenerRequestContext
74 return request.GetChannelBinding(); in GetChannelBinding()
94 public override ChannelBinding GetChannelBinding(ChannelBindingKind kind) in GetChannelBinding() method in System.Net.CachedTransportContext
H A D_TLSstream.cs87 m_CachedChannelBinding = GetChannelBinding(ChannelBindingKind.Endpoint); in Dispose()
392 internal ChannelBinding GetChannelBinding(ChannelBindingKind kind) in GetChannelBinding() method in System.Net.TlsStream
399 return m_Worker.GetChannelBinding(kind); in GetChannelBinding()
H A D_NtlmClient.cs96 …inding = httpWebRequest.CurrentAuthenticationState.TransportContext.GetChannelBinding(ChannelBindi… in DoAuthenticate()
H A D_KerberosClient.cs96 …inding = httpWebRequest.CurrentAuthenticationState.TransportContext.GetChannelBinding(ChannelBindi… in DoAuthenticate()
H A D_NegotiateClient.cs99 …inding = httpWebRequest.CurrentAuthenticationState.TransportContext.GetChannelBinding(ChannelBindi… in DoAuthenticate()
H A D_DigestClient.cs118 …inding = httpWebRequest.CurrentAuthenticationState.TransportContext.GetChannelBinding(ChannelBindi… in DoAuthenticate()
206 …inding = httpWebRequest.CurrentAuthenticationState.TransportContext.GetChannelBinding(ChannelBindi… in Update()
345 …inding = httpWebRequest.CurrentAuthenticationState.TransportContext.GetChannelBinding(ChannelBindi… in XPDoAuthenticate()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Security/tests/FunctionalTests/
H A DTransportContextTest.cs48 var cbt1 = context.GetChannelBinding(ChannelBindingKind.Endpoint); in CheckTransportContext()
49 var cbt2 = context.GetChannelBinding(ChannelBindingKind.Unique); in CheckTransportContext()
50 var cbt3 = context.GetChannelBinding(ChannelBindingKind.Unknown); in CheckTransportContext()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Channels/
H A DIStreamUpgradeChannelBindingProvider.cs11 …ChannelBinding GetChannelBinding(StreamUpgradeInitiator upgradeInitiator, ChannelBindingKind kind); in GetChannelBinding() method
12 … ChannelBinding GetChannelBinding(StreamUpgradeAcceptor upgradeAcceptor, ChannelBindingKind kind); in GetChannelBinding() method
H A DChannelBindingUtility.cs102 token = context.GetChannelBinding(ChannelBindingKind.Endpoint); in GetToken()
H A DStreamedFramingRequestChannel.cs107 …this.channelBindingToken = channelBindingProvider.GetChannelBinding(upgradeInitiator, ChannelBindi… in SendPreamble()
279 …this.channel.channelBindingToken = this.channelBindingProvider.GetChannelBinding(this.upgradeIniti… in HandleUpgrade()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Security/src/System/Net/
H A DSslStreamContext.cs23 public override ChannelBinding GetChannelBinding(ChannelBindingKind kind) in GetChannelBinding() method in System.Net.SslStreamContext
25 return _sslStream.GetChannelBinding(kind); in GetChannelBinding()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.HttpListener/src/System/Net/Windows/
H A DHttpListenerRequestContext.cs21 public override ChannelBinding GetChannelBinding(ChannelBindingKind kind) in GetChannelBinding() method in System.Net.HttpListenerRequestContext
28 return _request.GetChannelBinding(); in GetChannelBinding()
H A DHttpListenerRequest.Windows.cs557 internal ChannelBinding GetChannelBinding() in GetChannelBinding() method in System.Net.HttpListenerRequest
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Primitives/src/System/Net/
H A DTransportContext.cs11 public abstract ChannelBinding GetChannelBinding(ChannelBindingKind kind); in GetChannelBinding() method in System.Net.TransportContext
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Http.WinHttpHandler/src/System/Net/Http/
H A DWinHttpTransportContext.cs20 public override ChannelBinding GetChannelBinding(ChannelBindingKind kind) in GetChannelBinding() method in System.Net.Http.WinHttpTransportContext
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Http/tests/FunctionalTests/
H A DChannelBindingAwareContent.cs25 ChannelBinding = context.GetChannelBinding(ChannelBindingKind.Endpoint); in SerializeToStreamAsync()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Security/tests/UnitTests/Fakes/
H A DFakeSslState.cs83 internal ChannelBinding GetChannelBinding(ChannelBindingKind kind) in GetChannelBinding() method in System.Net.Security.SslState
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Security/
H A DRequestSecurityToken.cs153 public ChannelBinding GetChannelBinding() in GetChannelBinding() method in System.ServiceModel.Security.RequestSecurityToken
438 this.onGetBinaryNegotiation(this.GetChannelBinding()); in GetBinaryNegotiation()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/SecureProtocols/
H A DSslStream.cs263 internal ChannelBinding GetChannelBinding(ChannelBindingKind kind) in GetChannelBinding() method in System.Net.Security.SslStream
265 return _SslState.GetChannelBinding(kind); in GetChannelBinding()
H A D_SslState.cs263 internal ChannelBinding GetChannelBinding(ChannelBindingKind kind) in GetChannelBinding() method in System.Net.Security.SslState
265 return (Context == null) ? null : Context.GetChannelBinding(kind); in GetChannelBinding()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.HttpListener/tests/
H A DHttpListenerRequestTests.cs331 Assert.Null(request.TransportContext.GetChannelBinding(ChannelBindingKind.Endpoint)); in TransportContext_GetChannelBinding_ReturnsExpected()
339 … Assert.Throws<NotSupportedException>(() => request.TransportContext.GetChannelBinding(kind)); in TransportContext_GetChannelBindingInvalid_ThrowsNotSupportedException()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Security/src/System/Net/Security/
H A DSslStream.cs269 internal ChannelBinding GetChannelBinding(ChannelBindingKind kind) in GetChannelBinding() method in System.Net.Security.SslStream
271 return _sslState.GetChannelBinding(kind); in GetChannelBinding()
H A DSslState.cs219 internal ChannelBinding GetChannelBinding(ChannelBindingKind kind) in GetChannelBinding() method in System.Net.Security.SslState
221 return (Context == null) ? null : Context.GetChannelBinding(kind); in GetChannelBinding()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.HttpListener/src/System/Net/Managed/
H A DHttpListenerRequest.Managed.cs46 public override ChannelBinding GetChannelBinding(ChannelBindingKind kind) in GetChannelBinding() method in System.Net.HttpListenerRequest.Context
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Net/
H A DHttpListenerRequest.cs46 public override ChannelBinding GetChannelBinding (ChannelBindingKind kind) in GetChannelBinding() method in System.Net.HttpListenerRequest.Context

123