Interface IAsyncOperation<T>
Templated version of IAsyncOperation, provides templated overrides where possible
Inherited Members
Namespace: ResourceManagement
Syntax
public interface IAsyncOperation<T> : IAsyncOperation, IEnumerator
Type Parameters
| Name | Description |
|---|---|
| T |
Properties
result
Gets the result as the templated type.
Declaration
T result { get; }
Property Value
| Type | Description |
|---|---|
| T | The result. |
Events
completed
Occurs when completed.
Declaration
event Action<IAsyncOperation<T>> completed
Event Type
| Type | Description |
|---|---|
| Action<IAsyncOperation<T>> |