Compartilhar via


MobileServiceSyncTableExtensions.PurgeAsync Método

Definição

Sobrecargas

PurgeAsync(IMobileServiceSyncTable)

Exclui todos os itens na tabela local

PurgeAsync(IMobileServiceSyncTable, Boolean)

Exclui todos os itens na tabela local

PurgeAsync(IMobileServiceSyncTable, String)

Exclui todos os itens na tabela local que correspondem à consulta.

PurgeAsync<T,U>(IMobileServiceSyncTable<T>, IMobileServiceTableQuery<U>)

Exclui todos os itens na tabela local que correspondem à consulta.

PurgeAsync(IMobileServiceSyncTable)

Exclui todos os itens na tabela local

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

Parâmetros

table
IMobileServiceSyncTable

A instância da tabela na qual executar a limpeza.

Retornos

Uma tarefa que é concluída quando a operação de limpeza é concluída.

Aplica-se a

PurgeAsync(IMobileServiceSyncTable, Boolean)

Exclui todos os itens na tabela local

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

Parâmetros

table
IMobileServiceSyncTable

A instância da tabela na qual executar a limpeza.

force
Boolean

Force a limpeza descartando as operações pendentes.

Retornos

Uma tarefa que é concluída quando a operação de limpeza é concluída.

Aplica-se a

PurgeAsync(IMobileServiceSyncTable, String)

Exclui todos os itens na tabela local que correspondem à consulta.

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

Parâmetros

table
IMobileServiceSyncTable

A instância da tabela na qual executar a limpeza.

query
String

Uma consulta OData que determina quais itens excluir.

Retornos

Uma tarefa que é concluída quando a operação de limpeza é concluída.

Aplica-se a

PurgeAsync<T,U>(IMobileServiceSyncTable<T>, IMobileServiceTableQuery<U>)

Exclui todos os itens na tabela local que correspondem à consulta.

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

Parâmetros de tipo

T
U

Parâmetros

table
IMobileServiceSyncTable<T>

A instância da tabela na qual executar a limpeza.

query
IMobileServiceTableQuery<U>

Uma consulta OData que determina quais itens excluir.

Retornos

Uma tarefa que é concluída quando a operação de limpeza é concluída.

Aplica-se a