NewLife/NewLife.Remoting

Invoke时不需要捕获上下文
智能大石头 authored at 2025-04-02 08:09:40
f81b6b2
Tree
1 Parent(s) b09e76b
Summary: 1 changed files with 1 additions and 1 deletions.
Modified +1 -1
Modified +1 -1
diff --git a/NewLife.Remoting/Clients/ClientBase.cs b/NewLife.Remoting/Clients/ClientBase.cs
index 2e88891..36dabd9 100644
--- a/NewLife.Remoting/Clients/ClientBase.cs
+++ b/NewLife.Remoting/Clients/ClientBase.cs
@@ -376,7 +376,7 @@ public abstract class ClientBase : DisposeBase, IApiClient, ICommandClient, IEve
     public virtual TResult Invoke<TResult>(String action, Object? args = null)
     {
         using var source = new CancellationTokenSource(Timeout);
-        return InvokeAsync<TResult>(action, args, source.Token).GetAwaiter().GetResult();
+        return InvokeAsync<TResult>(action, args, source.Token).ConfigureAwait(false).GetAwaiter().GetResult();
     }
 
     /// <summary>设置令牌。派生类可重定义逻辑</summary>