Guard.NotDisposed(IDisposableExt, String[]) Method
Ensures that a specific object has not been disposed of.
Namespace: DevExpress.ExpressApp.Utils
Assembly: DevExpress.ExpressApp.v25.2.dll
NuGet Package: DevExpress.ExpressApp
Declaration
public static void NotDisposed(
IDisposableExt obj,
params string[] exceptionDataEntries
)
Parameters
| Name | Type | Description |
|---|---|---|
| obj | DevExpress.ExpressApp.IDisposableExt | An IDisposableExt object to check. |
| exceptionDataEntries | String[] | An array of strings specifying exception data entries. |
Remarks
If the specified object has been disposed of, an exception is thrown.
See Also