Interface IDisposableEx
Extension of the IDisposable interface. Provides all previously available functionality, and includes some useful extensions.
Inherited Members
Namespace: TheXDS.MCART.Types.Base
Assembly: MCART.dll
Syntax
public interface IDisposableEx : IDisposable
Properties
| Edit this page View SourceIsDisposed
Gets a value indicating whether this object has been disposed.
Declaration
bool IsDisposed { get; }
Property Value
Type | Description |
---|---|
bool |
Methods
| Edit this page View SourceTryDispose()
Attempts to release the resources of this instance.
Declaration
bool TryDispose()
Returns
Type | Description |
---|---|
bool | true if the instance was disposed successfully, false if this instance has already been disposed or if an error occurred while disposing it. |