コード例 #1
0
ファイル: AppsResourceGroup.cs プロジェクト: bbrandt/seq-api
 public async Task RemoveAsync(AppEntity entity)
 {
     await Client.DeleteAsync(entity, "Self", entity).ConfigureAwait(false);
 }
コード例 #2
0
ファイル: AppsResourceGroup.cs プロジェクト: bbrandt/seq-api
 public async Task UpdateAsync(AppEntity entity)
 {
     await Client.PutAsync(entity, "Self", entity).ConfigureAwait(false);
 }
コード例 #3
0
ファイル: AppsResourceGroup.cs プロジェクト: bbrandt/seq-api
 public async Task<AppEntity> AddAsync(AppEntity entity)
 {
     return await Client.PostAsync<AppEntity, AppEntity>(entity, "Create", entity).ConfigureAwait(false);
 }