5 overrides of Timeout
PresentationCore (2)
MS\Internal\IO\Packaging\PseudoWebRequest.cs (1)
265
public override int
Timeout
System\IO\Packaging\PackWebRequest.cs (1)
387
public override int
Timeout
System.Net.Requests (3)
artifacts\obj\System.Net.Requests\Debug\net10.0\System.Net.Requests.notsupported.cs (3)
47
public override int
Timeout
{ get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } }
142
public override int
Timeout
{ get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } }
224
public override int
Timeout
{ get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } }
2 writes to Timeout
Microsoft.VisualBasic.Forms (1)
Microsoft\VisualBasic\Devices\WebClientExtended.vb (1)
58
request.
Timeout
= _timeout
PresentationCore (1)
System\IO\Packaging\PackWebRequest.cs (1)
401
GetRequest().
Timeout
= value;
4 references to Timeout
PresentationCore (4)
System\IO\Packaging\PackWebRequest.cs (1)
391
return GetRequest().
Timeout
;
System\IO\Packaging\PackWebResponse.cs (3)
85
if (innerRequest.
Timeout
!= Timeout.Infinite)
92
"PackWebResponse() starting timeout timer " + innerRequest.
Timeout
+ " ms");
94
_timeoutTimer = new Timer(new TimerCallback(TimeoutCallback), null, innerRequest.
Timeout
, Timeout.Infinite);