Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

TableOperation Class (Microsoft.WindowsAzure.Storage.Table)

Represents a single table operation.

Namespace:   Microsoft.WindowsAzure.Storage.Table
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Inheritance Hierarchy

System.::..Object
  Microsoft.WindowsAzure.Storage.Table.::..TableOperation

Syntax

 
public class TableOperation
 
public ref class TableOperation 
 
type TableOperation = class end
 
Public Class TableOperation

Methods

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticDelete(ITableEntity)(ITableEntity^)(ITableEntity)(ITableEntity)

Creates a new table operation that deletes the given entity from a table.

System_CAPS_pubmethodEquals(Object)(Object^)(Object)(Object)

(Inherited from Object.)

System_CAPS_protmethodFinalize()()()()

(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()()()()

(Inherited from Object.)

System_CAPS_pubmethodGetType()()()()

(Inherited from Object.)

System_CAPS_pubmethodSystem_CAPS_staticInsert(ITableEntity)(ITableEntity^)(ITableEntity)(ITableEntity)

Creates a new table operation that inserts the given entity into a table.

System_CAPS_pubmethodSystem_CAPS_staticInsert(ITableEntity, Boolean)(ITableEntity^, Boolean)(ITableEntity, Boolean)(ITableEntity, Boolean)

Creates a new table operation that inserts the given entity into a table.

System_CAPS_pubmethodSystem_CAPS_staticInsertOrMerge(ITableEntity)(ITableEntity^)(ITableEntity)(ITableEntity)

Creates a new table operation that inserts the given entity into a table if the entity does not exist; if the entity does exist then its contents are merged with the provided entity.

System_CAPS_pubmethodSystem_CAPS_staticInsertOrReplace(ITableEntity)(ITableEntity^)(ITableEntity)(ITableEntity)

Creates a new table operation that inserts the given entity into a table if the entity does not exist; if the entity does exist then its contents are replaced with the provided entity.

System_CAPS_protmethodMemberwiseClone()()()()

(Inherited from Object.)

System_CAPS_pubmethodSystem_CAPS_staticMerge(ITableEntity)(ITableEntity^)(ITableEntity)(ITableEntity)

Creates a new table operation that merges the contents of the given entity with the existing entity in a table.

System_CAPS_pubmethodSystem_CAPS_staticReplace(ITableEntity)(ITableEntity^)(ITableEntity)(ITableEntity)

Creates a new table operation that replaces the contents of the given entity in a table.

System_CAPS_pubmethodSystem_CAPS_staticRetrieve(String, String, List<String>)(String^, String^, List<String^>^)(String, String, List<String>)(String, String, List(Of String))

Creates a new table operation that retrieves the contents of the given entity in a table.

System_CAPS_pubmethodSystem_CAPS_staticRetrieve<TResult><TResult><'TResult>(Of TResult)(String, String, EntityResolver<TResult>, List<String>)(String^, String^, EntityResolver<TResult>^, List<String^>^)(String, String, EntityResolver<'TResult>, List<String>)(String, String, EntityResolver(Of TResult), List(Of String))

Creates a new table operation that retrieves the contents of the given entity in a table.

System_CAPS_pubmethodSystem_CAPS_staticRetrieve<TElement><TElement><'TElement>(Of TElement)(String, String, List<String>)(String^, String^, List<String^>^)(String, String, List<String>)(String, String, List(Of String))

Creates a new table operation that retrieves the contents of the given entity in a table.

System_CAPS_pubmethodToString()()()()

(Inherited from Object.)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top