IAsyncState.TryGet(AsyncStateToken, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Met ons samenwerken op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en controleren. Bekijk onze gids voor inzenders voor meer informatie.