Operator Implicit
Implicit(AsyncOperationHandle<TObject> to AsyncOperationHandle)
Conversion from typed to non typed handles. This does not increment the reference count. To convert from non-typed back, use AsyncOperationHandle.Convert<T>()
Declaration
public static implicit operator AsyncOperationHandle(AsyncOperationHandle<TObject> obj)
Parameters
Type | Name | Description |
---|---|---|
AsyncOperationHandle<TObject> | obj | The typed handle to convert. |
Returns
Type | Description |
---|---|
AsyncOperationHandle | Returns the converted operation handle. |