コード例 #1
0
 public IFluentResourceT GetById(string id)
 {
     return(Extensions.Synchronize(() => GetByIdAsync(id, CancellationToken.None)));
 }
コード例 #2
0
 public override void DeleteById(string id)
 {
     Extensions.Synchronize(() => this.DeleteByIdAsync(id));
 }
コード例 #3
0
 public IFluentResourceT GetByResourceGroup(string groupName, string name)
 {
     return(Extensions.Synchronize(() => GetByResourceGroupAsync(groupName, name, CancellationToken.None)));
 }
コード例 #4
0
 public void DeleteByResourceGroup(string groupName, string name)
 {
     Extensions.Synchronize(() => this.DeleteByResourceGroupAsync(groupName, name, CancellationToken.None));
 }