ObjectDisposedException.ThrowIf Method

Definition

Overloads

ThrowIf(Boolean, Object)

Throws an ObjectDisposedException if the specified condition is true.

ThrowIf(Boolean, Type)

Throws an ObjectDisposedException if the specified condition is true.

ThrowIf(Boolean, Object)

Throws an ObjectDisposedException if the specified condition is true.

public:
 static void ThrowIf(bool condition, System::Object ^ instance);
public static void ThrowIf (bool condition, object instance);
static member ThrowIf : bool * obj -> unit
Public Shared Sub ThrowIf (condition As Boolean, instance As Object)

Parameters

condition
Boolean

The condition to evaluate.

instance
Object

The object whose type's full name should be included in any resulting ObjectDisposedException.

Exceptions

The condition is true.

Applies to

ThrowIf(Boolean, Type)

Throws an ObjectDisposedException if the specified condition is true.

public:
 static void ThrowIf(bool condition, Type ^ type);
public static void ThrowIf (bool condition, Type type);
static member ThrowIf : bool * Type -> unit
Public Shared Sub ThrowIf (condition As Boolean, type As Type)

Parameters

condition
Boolean

The condition to evaluate.

type
Type

The type whose full name should be included in any resulting ObjectDisposedException.

Exceptions

The condition is true.

Applies to