using System; using System.Threading; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides concurrency management for classes that support asynchronous method calls. This class cannot be inherited. // Token: 0x020000E5 RID: 229 [Token(Token = "0x20000E5")] public static class AsyncOperationManager { /// Returns an for tracking the duration of a particular asynchronous operation. /// An object used to associate a piece of client state, such as a task ID, with a particular asynchronous operation. /// An that you can use to track the duration of an asynchronous method invocation. // Token: 0x06000560 RID: 1376 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000560")] [Address(RVA = "0x4917D0", Offset = "0x4905D0", VA = "0x1804917D0")] public static AsyncOperation CreateOperation(object userSuppliedState) { return null; } /// Gets or sets the synchronization context for the asynchronous operation. /// The synchronization context for the asynchronous operation. // Token: 0x170000D6 RID: 214 // (get) Token: 0x06000561 RID: 1377 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x06000562 RID: 1378 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x170000D6")] [EditorBrowsable(EditorBrowsableState.Advanced)] public static SynchronizationContext SynchronizationContext { [Token(Token = "0x6000561")] [Address(RVA = "0x4918B0", Offset = "0x4906B0", VA = "0x1804918B0")] get { return null; } [Token(Token = "0x6000562")] [Address(RVA = "0x491920", Offset = "0x490720", VA = "0x180491920")] set { } } } }