mscorlib(4.0.0.0) API with additions
Timeout.cs
2 
3 namespace System.Threading
4 {
6  [ComVisible(true)]
7  [__DynamicallyInvokable]
8  public static class Timeout
9  {
11  [ComVisible(false)]
12  [__DynamicallyInvokable]
13  public static readonly TimeSpan InfiniteTimeSpan = new TimeSpan(0, 0, 0, 0, -1);
14 
16  [__DynamicallyInvokable]
17  public const int Infinite = -1;
18 
19  internal const uint UnsignedInfinite = uint.MaxValue;
20  }
21 }
const int Infinite
A constant used to specify an infinite waiting period, for threading methods that accept an T:System....
Definition: Timeout.cs:17
Definition: __Canon.cs:3
static readonly TimeSpan InfiniteTimeSpan
A constant used to specify an infinite waiting period, for methods that accept a T:System....
Definition: Timeout.cs:13
Contains constants that specify infinite time-out intervals. This class cannot be inherited.
Definition: Timeout.cs:8
Represents a time interval.To browse the .NET Framework source code for this type,...
Definition: TimeSpan.cs:12