ManagementOptions.Timeout Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the time-out to apply to the operation. Note that for operations that return collections, this time-out applies to the enumeration through the resulting collection, not the operation itself (the ReturnImmediately property is used for the latter). This property is used to indicate that the operation should be performed semi-synchronously.
public:
property TimeSpan Timeout { TimeSpan get(); void set(TimeSpan value); };
public TimeSpan Timeout { get; set; }
member this.Timeout : TimeSpan with get, set
Public Property Timeout As TimeSpan
Property Value
Returns a TimeSpan that defines the time-out time to apply to the operation.
Remarks
The Timeout property is used in the corresponding semi-synchronous operation for the following classes: ObjectGetOptions, PutOptions, DeleteOptions, InvokeMethodOptions, EnumerationOptions, and EventWatcherOptions.
This property has no effect on the Connect() method.
Property Value
The default value for this property is MaxValue, which means the operation will block. The value specified must be positive.
.NET Framework Security
Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.