IAsyncState Interface 
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.
Encapsulates all information within the asynchronous flow in an AsyncLocal<T> variable. Some implementations of this interface might not be thread safe.
public interface class IAsyncStatepublic interface IAsyncStatetype IAsyncState = interfacePublic Interface IAsyncStateMethods
| Get(AsyncStateToken) | Gets the stored async context from the state. | 
| Initialize() | Initializes async state in current asynchronous flow. | 
| RegisterAsyncContext() | Registers new async context with the state. | 
| Reset() | Resets async state after usage. | 
| Set(AsyncStateToken, Object) | Stores async context. | 
| TryGet(AsyncStateToken, Object) | Tries to get the stored async context from the state. |