Exemplo n.º 1
0
 public static T GetService <T>(this IRpcClient rpcClient, string scope) where T : class
 {
     return(rpcClient.GetService <T>(scope, rpcClient.DefaultTimeout));
 }
Exemplo n.º 2
0
 public static T GetService <T>(this IRpcClient rpcClient, TimeoutSettings timeoutSettings) where T : class
 {
     return(rpcClient.GetService <T>(null, timeoutSettings));
 }
Exemplo n.º 3
0
 public static T GetService <T>(this IRpcClient rpcClient) where T : class
 {
     return(rpcClient.GetService <T>(null, rpcClient.DefaultTimeout));
 }