Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Runtime/CompilerServices/ICriticalNotifyCompletion.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

20 lines
807 B
C#

using System;
using Cpp2IlInjected;
namespace System.Runtime.CompilerServices
{
/// <summary>Represents an awaiter that schedules continuations when an await operation completes.</summary>
// Token: 0x0200055E RID: 1374
[Token(Token = "0x200055E")]
public interface ICriticalNotifyCompletion : INotifyCompletion
{
/// <summary>Schedules the continuation action that's invoked when the instance completes.</summary>
/// <param name="continuation">The action to invoke when the operation completes.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="continuation" /> argument is null (Nothing in Visual Basic).</exception>
// Token: 0x06002C40 RID: 11328
[Token(Token = "0x6002C40")]
[Address(Slot = "0")]
void UnsafeOnCompleted(Action continuation);
}
}