MobileServiceSyncTableExtensions.PurgeAsync メソッド

定義

オーバーロード

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

パラメーター

table
IMobileServiceSyncTable<T>

消去を実行するテーブルのインスタンス。

query
IMobileServiceTableQuery<U>

削除する項目を決定する OData クエリ。

戻り値

消去操作が完了したときに完了するタスク。

適用対象