CriticalHandle.SetHandleAsInvalid Method

Definition

Marks a handle as invalid.

public:
 void SetHandleAsInvalid();
public void SetHandleAsInvalid ();
member this.SetHandleAsInvalid : unit -> unit
Public Sub SetHandleAsInvalid ()

Remarks

Call the SetHandleAsInvalid method only when you know that your handle is invalid and you want to mark it as such. Doing so does not change the value of the handle field; it only marks the handle as invalid. The handle might then contain a potentially stale value. The effect of this call is that no attempt is made to free the resources.

As with the SetHandle method, use SetHandleAsInvalid only if you need to support a pre-existing handle.

Applies to