10 writes to _booleans
System.Net.Requests (10)
System\Net\HttpWebRequest.cs (10)
503
_booleans
|= Booleans.UnsafeAuthenticatedConnectionSharing;
507
_booleans
&= ~Booleans.UnsafeAuthenticatedConnectionSharing;
538
_booleans
|= Booleans.AllowWriteStreamBuffering;
542
_booleans
&= ~Booleans.AllowWriteStreamBuffering;
562
_booleans
|= Booleans.AllowAutoRedirect;
566
_booleans
&= ~Booleans.AllowAutoRedirect;
767
_booleans
|= Booleans.SendChunked;
771
_booleans
&= ~Booleans.SendChunked;
1043
_booleans
|= Booleans.IsVersionHttp10;
1047
_booleans
&= ~Booleans.IsVersionHttp10;
5 references to _booleans
System.Net.Requests (5)
System\Net\HttpWebRequest.cs (5)
497
return (
_booleans
& Booleans.UnsafeAuthenticatedConnectionSharing) != 0;
532
return (
_booleans
& Booleans.AllowWriteStreamBuffering) != 0;
556
return (
_booleans
& Booleans.AllowAutoRedirect) != 0;
757
return (
_booleans
& Booleans.SendChunked) != 0;
1037
return (
_booleans
& Booleans.IsVersionHttp10) != 0;