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