Share via


StorageDomainManager<TData> Class

 

Provides an IDomainManager<TData> implementation targeting Azure Table Storage as the backend store.

This API is not CLS-compliant.

Namespace:   Microsoft.WindowsAzure.Mobile.Service
Assembly:  Microsoft.WindowsAzure.Mobile.Service.Storage (in Microsoft.WindowsAzure.Mobile.Service.Storage.dll)

Inheritance Hierarchy

System.Object
  Microsoft.WindowsAzure.Mobile.Service.StorageDomainManager<TData>

Syntax

[CLSCompliantAttribute(false)]
public class StorageDomainManager<TData> : IDomainManager<TData>
where TData : class, new(), ITableData, ITableEntity
generic<typename TData>
where TData : ref class, gcnew(), ITableData, ITableEntity
[CLSCompliantAttribute(false)]
public ref class StorageDomainManager : IDomainManager<TData>
[<CLSCompliantAttribute(false)>]
type StorageDomainManager<'TData when 'TData : not struct, new() and ITableData and ITableEntity> = 
    class
        interface IDomainManager<'TData>
    end
<CLSCompliantAttribute(False)>
Public Class StorageDomainManager(Of TData As { Class, ITableData, ITableEntity, New })
    Implements IDomainManager(Of TData)

Type Parameters

  • TData
    The data object (DTO) type.

Constructors

Name Description
System_CAPS_pubmethod StorageDomainManager<TData>(String, String, HttpRequestMessage, ApiServices)

System_CAPS_pubmethod StorageDomainManager<TData>(String, String, HttpRequestMessage, ApiServices, ODataValidationSettings, ODataQuerySettings)

Properties

Name Description
System_CAPS_pubproperty QuerySettings

System_CAPS_pubproperty Request

System_CAPS_pubproperty Services

System_CAPS_protproperty StorageAccount

System_CAPS_protproperty Table

System_CAPS_protproperty TableClient

System_CAPS_protproperty TableName

System_CAPS_pubproperty ValidationSettings

Methods

Name Description
System_CAPS_pubmethod DeleteAsync(String)

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod ExecuteQueryAsync(TableQuery<TData>, Int32)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_protmethod GetCloudStorageAccount(String)

System_CAPS_protmethod GetCurrentItem(CompositeTableKey)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_protmethod GetStorageKey(String)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod InitializeAsync(CloudTable)

System_CAPS_pubmethod InsertAsync(TData)

System_CAPS_pubmethod LookupAsync(String)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod QueryAsync(ODataQueryOptions)

System_CAPS_pubmethod ReplaceAsync(String, TData)

System_CAPS_protmethod SetNextPageLink(TableContinuationToken)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

System_CAPS_pubmethod UpdateAsync(String, Delta<TData>)

Explicit Interface Implementations

Name Description
System_CAPS_pubinterfaceSystem_CAPS_privmethod IDomainManager<TData>.Lookup(String)

System_CAPS_pubinterfaceSystem_CAPS_privmethod IDomainManager<TData>.Query()

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.

See Also

Microsoft.WindowsAzure.Mobile.Service Namespace

Return to top