Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ SendAuthResetSignal()

void System.Net.Security.SslStream.SendAuthResetSignal ( ProtocolToken message,
ExceptionDispatchInfo exception )
inlineprivate

Definition at line 1320 of file SslStream.cs.

1321 {
1322 SetException(exception.SourceException);
1323 if (message == null || message.Size == 0)
1324 {
1325 exception.Throw();
1326 }
1327 base.InnerStream.Write(message.Payload, 0, message.Size);
1328 exception.Throw();
1329 }
void SetException(Exception e)
Definition SslStream.cs:958

References System.exception, System.Net.Security.ProtocolToken.Payload, System.Net.Security.SslStream.SetException(), and System.Net.Security.ProtocolToken.Size.

Referenced by System.Net.Security.SslStream.CompleteHandshake().