20 lines
759 B
C#
20 lines
759 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Runtime.CompilerServices
|
|
{
|
|
/// <summary>Represents an operation that schedules continuations when it completes.</summary>
|
|
// Token: 0x0200053F RID: 1343
|
|
[Token(Token = "0x200053F")]
|
|
public interface 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: 0x06002A30 RID: 10800
|
|
[Token(Token = "0x6002A30")]
|
|
[Address(Slot = "0")]
|
|
void OnCompleted(Action continuation);
|
|
}
|
|
}
|