using System;
using System.Runtime.InteropServices;
namespace System.Threading
{
/// Contains a constant used to specify an infinite amount of time. This class cannot be inherited.
/// 2
// Token: 0x02000626 RID: 1574
[ComVisible(true)]
public static class Timeout
{
/// A constant used to specify an infinite waiting period. This field is constant.
/// 1
// Token: 0x04001753 RID: 5971
public const int Infinite = -1;
}
}