MobileServiceSyncTableExtensions.PurgeAsync メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
PurgeAsync(IMobileServiceSyncTable) |
ローカル テーブル内のすべての項目を削除します |
PurgeAsync(IMobileServiceSyncTable, Boolean) |
ローカル テーブル内のすべての項目を削除します |
PurgeAsync(IMobileServiceSyncTable, String) |
クエリに一致するローカル テーブル内のすべての項目を削除します。 |
PurgeAsync<T,U>(IMobileServiceSyncTable<T>, IMobileServiceTableQuery<U>) |
クエリに一致するローカル テーブル内のすべての項目を削除します。 |
PurgeAsync(IMobileServiceSyncTable)
ローカル テーブル内のすべての項目を削除します
public static System.Threading.Tasks.Task PurgeAsync (this Microsoft.WindowsAzure.MobileServices.Sync.IMobileServiceSyncTable table);
static member PurgeAsync : Microsoft.WindowsAzure.MobileServices.Sync.IMobileServiceSyncTable -> System.Threading.Tasks.Task
<Extension()>
Public Function PurgeAsync (table As IMobileServiceSyncTable) As Task
パラメーター
- table
- IMobileServiceSyncTable
消去を実行するテーブルのインスタンス。
戻り値
消去操作が完了したときに完了するタスク。
適用対象
PurgeAsync(IMobileServiceSyncTable, Boolean)
ローカル テーブル内のすべての項目を削除します
public static System.Threading.Tasks.Task PurgeAsync (this Microsoft.WindowsAzure.MobileServices.Sync.IMobileServiceSyncTable table, bool force);
static member PurgeAsync : Microsoft.WindowsAzure.MobileServices.Sync.IMobileServiceSyncTable * bool -> System.Threading.Tasks.Task
<Extension()>
Public Function PurgeAsync (table As IMobileServiceSyncTable, force As Boolean) As Task
パラメーター
- table
- IMobileServiceSyncTable
消去を実行するテーブルのインスタンス。
- force
- Boolean
保留中の操作を破棄して、強制的に消去します。
戻り値
消去操作が完了したときに完了するタスク。
適用対象
PurgeAsync(IMobileServiceSyncTable, String)
クエリに一致するローカル テーブル内のすべての項目を削除します。
public static System.Threading.Tasks.Task PurgeAsync (this Microsoft.WindowsAzure.MobileServices.Sync.IMobileServiceSyncTable table, string query);
static member PurgeAsync : Microsoft.WindowsAzure.MobileServices.Sync.IMobileServiceSyncTable * string -> System.Threading.Tasks.Task
<Extension()>
Public Function PurgeAsync (table As IMobileServiceSyncTable, query As String) As Task
パラメーター
- table
- IMobileServiceSyncTable
消去を実行するテーブルのインスタンス。
- query
- String
削除する項目を決定する OData クエリ。
戻り値
消去操作が完了したときに完了するタスク。
適用対象
PurgeAsync<T,U>(IMobileServiceSyncTable<T>, IMobileServiceTableQuery<U>)
クエリに一致するローカル テーブル内のすべての項目を削除します。
public static System.Threading.Tasks.Task PurgeAsync<T,U> (this Microsoft.WindowsAzure.MobileServices.Sync.IMobileServiceSyncTable<T> table, Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<U> query);
static member PurgeAsync : Microsoft.WindowsAzure.MobileServices.Sync.IMobileServiceSyncTable<'T> * Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<'U> -> System.Threading.Tasks.Task
<Extension()>
Public Function PurgeAsync(Of T, U) (table As IMobileServiceSyncTable(Of T), query As IMobileServiceTableQuery(Of U)) As Task
型パラメーター
- T
- U
パラメーター
消去を実行するテーブルのインスタンス。
- query
- IMobileServiceTableQuery<U>
削除する項目を決定する OData クエリ。
戻り値
消去操作が完了したときに完了するタスク。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for .NET