46 lines
1.8 KiB
C#
46 lines
1.8 KiB
C#
using System;
|
|
using System.Threading;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Provides concurrency management for classes that support asynchronous method calls. This class cannot be inherited.</summary>
|
|
// Token: 0x020000E1 RID: 225
|
|
[Token(Token = "0x20000E1")]
|
|
public static class AsyncOperationManager
|
|
{
|
|
/// <summary>Returns an <see cref="T:System.ComponentModel.AsyncOperation" /> for tracking the duration of a particular asynchronous operation.</summary>
|
|
/// <param name="userSuppliedState">An object used to associate a piece of client state, such as a task ID, with a particular asynchronous operation.</param>
|
|
/// <returns>An <see cref="T:System.ComponentModel.AsyncOperation" /> that you can use to track the duration of an asynchronous method invocation.</returns>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>Gets or sets the synchronization context for the asynchronous operation.</summary>
|
|
/// <returns>The synchronization context for the asynchronous operation.</returns>
|
|
// 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
|
|
{
|
|
}
|
|
}
|
|
}
|
|
}
|