2019-08-23 11:56:54 -07:00
|
|
|
using System.Threading;
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace System.Threading {
|
|
|
|
|
|
|
|
|
|
|
|
public static class Timeout
|
|
|
|
{
|
|
|
|
public const int32 Infinite = -1;
|
2020-03-09 06:34:16 -07:00
|
|
|
protected const uint32 UnsignedInfinite = (uint32)-1;
|
2019-08-23 11:56:54 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|