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

◆ CanWrite

override bool System.Net.Security.SslStream.CanWrite
get

Definition at line 269 of file SslStream.cs.

270 {
271 get
272 {
273 if (IsAuthenticated && base.InnerStream.CanWrite)
274 {
275 return !_shutdown;
276 }
277 return false;
278 }
279 }
override bool IsAuthenticated
Definition SslStream.cs:95