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

◆ CanRead

override bool System.Net.Security.NegotiateStream.CanRead
get

Definition at line 193 of file NegotiateStream.cs.

194 {
195 get
196 {
197 if (IsAuthenticated)
198 {
199 return base.InnerStream.CanRead;
200 }
201 return false;
202 }
203 }