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

◆ UnsafeAuthenticatedConnectionSharing

bool System.Net.HttpWebRequest.UnsafeAuthenticatedConnectionSharing
getset

Definition at line 419 of file HttpWebRequest.cs.

420 {
421 get
422 {
423 return (_booleans & Booleans.UnsafeAuthenticatedConnectionSharing) != 0;
424 }
425 set
426 {
427 if (value)
428 {
429 _booleans |= Booleans.UnsafeAuthenticatedConnectionSharing;
430 }
431 else
432 {
433 _booleans &= ~Booleans.UnsafeAuthenticatedConnectionSharing;
434 }
435 }
436 }