ObjectDisposedException.ThrowIf Method
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.
Overloads
ThrowIf(Boolean, Object) |
Throws an ObjectDisposedException if the specified |
ThrowIf(Boolean, Type) |
Throws an ObjectDisposedException if the specified |
ThrowIf(Boolean, Object)
- 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
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
.