We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
调用方法为
public virtual async Task DoAsync() { if (Count < 50) { Count++; throw new FieldAccessException(); } await Task.Yield(); }
在IInterceptorCreator.cs中,注释一下三行代码即可解决
public static async Task Await(Task task) { //if (!task.IsCompleted) { await task; } } public static async Task AwaitValueTask(ValueTask task) { //if (!task.IsCompleted) { await task; } } public static async Task AwaitValueTaskReturnValue<T>(ValueTask<T> task) { //if (!task.IsCompleted) { await task; } }
The text was updated successfully, but these errors were encountered:
48bfba2
try 0.0.4.7
Sorry, something went wrong.
No branches or pull requests
调用方法为
在IInterceptorCreator.cs中,注释一下三行代码即可解决
The text was updated successfully, but these errors were encountered: