Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

ObjectDisposedException.ThrowIf Method

Definition

Namespace:
System
Assemblies:
netstandard.dll, System.Runtime.dll

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.

Overloads

Name Description
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)

Source:
ObjectDisposedException.cs
Source:
ObjectDisposedException.cs
Source:
ObjectDisposedException.cs
Source:
ObjectDisposedException.cs
Source:
ObjectDisposedException.cs

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)

Source:
ObjectDisposedException.cs
Source:
ObjectDisposedException.cs
Source:
ObjectDisposedException.cs
Source:
ObjectDisposedException.cs
Source:
ObjectDisposedException.cs

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


Feedback

Was this page helpful?