-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_CodeExceptions_ObjectDisposed_1
Andrew Koryavchenko edited this page Jun 17, 2018
·
7 revisions
Throw this if the object is disposed.
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static ObjectDisposedException ObjectDisposed(
Type typeofDisposedObject,
string messageFormat,
params Object[] args
)
VB
Public Shared Function ObjectDisposed (
typeofDisposedObject As Type,
messageFormat As String,
ParamArray args As Object()
) As ObjectDisposedException
F#
static member ObjectDisposed :
typeofDisposedObject : Type *
messageFormat : string *
args : Object[] -> ObjectDisposedException
- typeofDisposedObject
- Type: System.Type
The typeof disposed object. - messageFormat
- Type: System.String
The message format. - args
- Type: System.Object[]
The arguments.
Type: ObjectDisposedException
Initialized instance of ObjectDisposedException.
CodeExceptions Class
ObjectDisposed Overload
CodeJam Namespace