MongoDomainManager<TData> Constructor

 

Namespace:   Microsoft.Azure.Mobile.Server
Assembly:  Microsoft.Azure.Mobile.Server.Mongo (in Microsoft.Azure.Mobile.Server.Mongo.dll)

Overload List

Name Description
System_CAPS_pubmethod MongoDomainManager<TData>(String, String, String, HttpRequestMessage)

Creates a new instance of MongoDomainManager<TData>

System_CAPS_pubmethod MongoDomainManager<TData>(String, String, String, HttpRequestMessage, Boolean)

Creates a new instance of MongoDomainManager<TData>

See Also

MongoDomainManager<TData> Class
Microsoft.Azure.Mobile.Server Namespace

Return to top

MongoDomainManager<TData> Constructor (String, String, String, HttpRequestMessage)

Creates a new instance of MongoDomainManager<TData>

Syntax

public MongoDomainManager(
    string connectionStringName,
    string databaseName,
    string collectionName,
    HttpRequestMessage request
)
public:
MongoDomainManager(
    String^ connectionStringName,
    String^ databaseName,
    String^ collectionName,
    HttpRequestMessage^ request
)
new : 
        connectionStringName:string *
        databaseName:string *
        collectionName:string *
        request:HttpRequestMessage -> MongoDomainManager
Public Sub New (
    connectionStringName As String,
    databaseName As String,
    collectionName As String,
    request As HttpRequestMessage
)

Parameters

  • connectionStringName
    Type: System.String

    Name of the connection string for Mongo database

Return to top

MongoDomainManager<TData> Constructor (String, String, String, HttpRequestMessage, Boolean)

Creates a new instance of MongoDomainManager<TData>

Syntax

public MongoDomainManager(
    string connectionStringName,
    string databaseName,
    string collectionName,
    HttpRequestMessage request,
    bool enableSoftDelete
)
public:
MongoDomainManager(
    String^ connectionStringName,
    String^ databaseName,
    String^ collectionName,
    HttpRequestMessage^ request,
    bool enableSoftDelete
)
new : 
        connectionStringName:string *
        databaseName:string *
        collectionName:string *
        request:HttpRequestMessage *
        enableSoftDelete:bool -> MongoDomainManager
Public Sub New (
    connectionStringName As String,
    databaseName As String,
    collectionName As String,
    request As HttpRequestMessage,
    enableSoftDelete As Boolean
)

Parameters

  • connectionStringName
    Type: System.String

    Name of the connection string for Mongo database

  • enableSoftDelete
    Type: System.Boolean

    Determines whether rows are hard deleted or marked as deleted.

Return to top