MajorObject Constructor (String, String)

 

Applies To: SQL Server (starting with 2016)

Initializes a new major object as implemented by the derived class using the specified object name and identifier of the object.

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

Syntax

protected MajorObject(
    string name,
    string id
)
protected:
MajorObject(
    String^ name,
    String^ id
)
new : 
        name:string *
        id:string -> MajorObject
Protected Sub New (
    name As String,
    id As String
)

Parameters

  • name
    Type: System.String

    A System.String containing the name of the object.

  • id
    Type: System.String

    A System.String containing the identifier of the object.

See Also

MajorObject Overload
MajorObject Class
Microsoft.AnalysisServices Namespace

Return to top