Example #1
0
 public Task <object> Initialize(dynamic obj)
 {
     _binder = new BinderCore();
     return(SyncTask(() =>
     {
         var result = _binder.Initialize(obj.path);
         return EdgeResult.Ok(result);
     }));
 }
Example #2
0
 public Task<object> Initialize(dynamic obj)
 {
     _binder = new BinderCore();
     return SyncTask(() =>
         {
             var result = _binder.Initialize(obj.path);
             return EdgeResult.Ok(result);
         });
 }