Timeout.InfiniteTimeSpan 字段

定义

用于指定无限长等待时间的常数,接受 TimeSpan 参数的方法。

public: static initonly TimeSpan InfiniteTimeSpan;
public static readonly TimeSpan InfiniteTimeSpan;
[System.Runtime.InteropServices.ComVisible(false)]
public static readonly TimeSpan InfiniteTimeSpan;
 staticval mutable InfiniteTimeSpan : TimeSpan
[<System.Runtime.InteropServices.ComVisible(false)>]
 staticval mutable InfiniteTimeSpan : TimeSpan
Public Shared ReadOnly InfiniteTimeSpan As TimeSpan 

字段值

TimeSpan
属性

注解

对于接受timeout类型TimeSpan参数的线程处理方法,例如Thread.Sleep(TimeSpan)Thread.Join(TimeSpan),此值用于无限期挂起线程。 但是,在大多数情况下,我们建议使用其他 System.Threading 类(如 MutexMonitorEventWaitHandleSemaphore 相反)来同步线程或管理资源。

此字段的值为 -00:00:00.0010000 或 -1 毫秒。

适用于