12345678910111213141516171819202122232425262728293031323334 |
- 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)
- {
- }
- }
- }
|