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: 0x020000E1 RID: 225 [Token(Token = "0x20000E1")] 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: 0x0600054A RID: 1354 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600054A")] [Address(RVA = "0xB8E5B0", Offset = "0xB8D5B0", VA = "0x180B8E5B0")] 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: 0x170000D2 RID: 210 // (get) Token: 0x0600054B RID: 1355 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x0600054C RID: 1356 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x170000D2")] [EditorBrowsable(EditorBrowsableState.Advanced)] public static SynchronizationContext SynchronizationContext { [Token(Token = "0x600054B")] [Address(RVA = "0xB8E690", Offset = "0xB8D690", VA = "0x180B8E690")] get { return null; } [Token(Token = "0x600054C")] [Address(RVA = "0xB8E700", Offset = "0xB8D700", VA = "0x180B8E700")] set { } } } }