Operator implicit operator
implicit operator AsyncOperationHandle(AsyncOperationHandle<TObject>)
Conversion from typed to non typed handles. This does not increment the reference count. To convert from non-typed back, use AsyncOperationHandle.Convert<T>()
선언
public static implicit operator AsyncOperationHandle(AsyncOperationHandle<TObject> obj)
파라미터
타입 | 이름 | 설명 |
---|---|---|
AsyncOperationHandle<TObject> | obj | The typed handle to convert. |
반환
타입 | 설명 |
---|---|
AsyncOperationHandle | Returns the converted operation handle. |