RestoreInfo Constructor (String, String)

 

Applies To: SQL Server (starting with 2016)

Initializes a new instance of RestoreInfo using a file and database name.

Namespace:   Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices.Core (in Microsoft.AnalysisServices.Core.dll)

Syntax

public RestoreInfo(
    string file,
    string databaseName
)
public:
RestoreInfo(
    String^ file,
    String^ databaseName
)
new : 
        file:string *
        databaseName:string -> RestoreInfo
Public Sub New (
    file As String,
    databaseName As String
)

Parameters

  • file
    Type: System.String

    Name of the file for which information is to be restored.

  • databaseName
    Type: System.String

    Name of the database from which to extract the information to be restored.

See Also

RestoreInfo Overload
RestoreInfo Class
Microsoft.AnalysisServices Namespace

Return to top