You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
704 B
34 lines
704 B
3 years ago
|
using System;
|
||
|
using System.Diagnostics;
|
||
|
using System.Runtime.CompilerServices;
|
||
|
|
||
|
namespace ET
|
||
|
{
|
||
|
[AsyncMethodBuilder(typeof (AsyncETTaskCompletedMethodBuilder))]
|
||
|
public struct ETTaskCompleted: ICriticalNotifyCompletion
|
||
|
{
|
||
|
[DebuggerHidden]
|
||
|
public ETTaskCompleted GetAwaiter()
|
||
|
{
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
[DebuggerHidden]
|
||
|
public bool IsCompleted => true;
|
||
|
|
||
|
[DebuggerHidden]
|
||
|
public void GetResult()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
[DebuggerHidden]
|
||
|
public void OnCompleted(Action continuation)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
[DebuggerHidden]
|
||
|
public void UnsafeOnCompleted(Action continuation)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|