示例#1
0
 public static TResult ExecuteSync <TService, TResult>(
     this GlobalServiceAccessor accessor,
     Func <TService, TResult> action) =>
 InternalGlobalService.ExecuteSync(action);
示例#2
0
 public static void ExecuteSync <TService>(
     this GlobalServiceAccessor accessor,
     Action <TService> action,
     bool ignoreNotPresent = false) =>
 InternalGlobalService.ExecuteSync(action, ignoreNotPresent);