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

◆ AllowWriteStreamBuffering

virtual bool System.Net.HttpWebRequest.AllowWriteStreamBuffering
getset

Definition at line 454 of file HttpWebRequest.cs.

455 {
456 get
457 {
458 return (_booleans & Booleans.AllowWriteStreamBuffering) != 0;
459 }
460 set
461 {
462 if (value)
463 {
464 _booleans |= Booleans.AllowWriteStreamBuffering;
465 }
466 else
467 {
468 _booleans &= ~Booleans.AllowWriteStreamBuffering;
469 }
470 }
471 }