Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SslStreamContext.cs
Go to the documentation of this file.
1
using
System.Net.Security
;
2
using
System.Security.Authentication.ExtendedProtection
;
3
4
namespace
System.Net
;
5
6
internal
sealed
class
SslStreamContext
:
TransportContext
7
{
8
private
readonly
SslStream
_sslStream
;
9
10
internal
SslStreamContext
(
SslStream
sslStream)
11
{
12
_sslStream
= sslStream;
13
}
14
15
public
override
ChannelBinding
GetChannelBinding
(
ChannelBindingKind
kind)
16
{
17
return
_sslStream
.
GetChannelBinding
(kind);
18
}
19
}
System.Net.Security.SslStream.GetChannelBinding
ChannelBinding GetChannelBinding(ChannelBindingKind kind)
Definition
SslStream.cs:480
System.Net.Security.SslStream
Definition
SslStream.cs:16
System.Net.SslStreamContext.GetChannelBinding
override ChannelBinding GetChannelBinding(ChannelBindingKind kind)
Definition
SslStreamContext.cs:15
System.Net.SslStreamContext._sslStream
readonly SslStream _sslStream
Definition
SslStreamContext.cs:8
System.Net.SslStreamContext.SslStreamContext
SslStreamContext(SslStream sslStream)
Definition
SslStreamContext.cs:10
System.Net.SslStreamContext
Definition
SslStreamContext.cs:7
System.Net.TransportContext
Definition
TransportContext.cs:6
System.Security.Authentication.ExtendedProtection.ChannelBinding
Definition
ChannelBinding.cs:6
System.Net.Security
Definition
CertificateHelper.cs:4
System.Net
Definition
HttpClientJsonExtensions.cs:8
System.Security.Authentication.ExtendedProtection.ChannelBindingKind
ChannelBindingKind
Definition
ChannelBindingKind.cs:4
System.Security.Authentication.ExtendedProtection
Definition
ExtendedProtectionPolicyTypeConverter.cs:8
source
System.Net.Security
System.Net
SslStreamContext.cs
Generated by
1.10.0