IAsyncState.TryGet(AsyncStateToken, Object) Method

Definition

Tries to get the stored async context from the state.

public:
 bool TryGet(Microsoft::Extensions::AsyncState::AsyncStateToken token, [Runtime::InteropServices::Out] System::Object ^ % value);
public bool TryGet (Microsoft.Extensions.AsyncState.AsyncStateToken token, out object? value);
abstract member TryGet : Microsoft.Extensions.AsyncState.AsyncStateToken * obj -> bool
Public Function TryGet (token As AsyncStateToken, ByRef value As Object) As Boolean

Parameters

token
AsyncStateToken

The token representing the state to extract.

value
Object

Receives the value associated with the specified token, if the context is initialized; otherwise, the default value for the type of the value parameter.

Returns

true if the context is initialized; otherwise, false.

Applies to