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