HierarchyCollection.Insert Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Insert(Int32, String, String) |
Creates a new Hierarchy object using the specified name and identifier, inserts it to the collection at the specified index and returns the new Hierarchy created. |
Insert(Int32, String) |
Creates a new Hierarchy object using the specified name, inserts it to the collection at the specified index and returns the new Hierarchy created. |
Insert(Int32, Hierarchy) |
Inserts the specified Hierarchy to the collection at the specified index. |
Insert(Int32) |
Creates a new Hierarchy object using a generated unique Name and identifier, inserts it to the collection at the specified index and returns the new Hierarchy created. |
Insert(Int32, String, String)
Creates a new Hierarchy object using the specified name and identifier, inserts it to the collection at the specified index and returns the new Hierarchy created.
public Microsoft.AnalysisServices.Hierarchy Insert (int index, string name, string id);
override this.Insert : int * string * string -> Microsoft.AnalysisServices.Hierarchy
Public Function Insert (index As Integer, name As String, id As String) As Hierarchy
Parameters
Returns
The newly created Hierarchy object.
Exceptions
The specified index is not a valid value (less than zero or bigger then the total number of elements).
- The specified name is not valid in the collection.
- The specified identifier is not valid in the collection.
Applies to
Insert(Int32, String)
Creates a new Hierarchy object using the specified name, inserts it to the collection at the specified index and returns the new Hierarchy created.
public Microsoft.AnalysisServices.Hierarchy Insert (int index, string name);
override this.Insert : int * string -> Microsoft.AnalysisServices.Hierarchy
Public Function Insert (index As Integer, name As String) As Hierarchy
Parameters
Returns
The newly created Hierarchy object.
Exceptions
The specified index is not a valid value (less than zero or bigger then the total number of elements).
The specified name is not valid in the collection.
Remarks
The identifier for the Hierarchy is generated based on the specified Name.
Applies to
Insert(Int32, Hierarchy)
Inserts the specified Hierarchy to the collection at the specified index.
public void Insert (int index, Microsoft.AnalysisServices.Hierarchy item);
override this.Insert : int * Microsoft.AnalysisServices.Hierarchy -> unit
Public Sub Insert (index As Integer, item As Hierarchy)
Parameters
Exceptions
The specified index is not a valid value (less than zero or bigger then the total number of elements).
- The specified item is a null reference (Nothing in Visual Basic).
- The specified item already esists in the collection.
- The identifier of the specified Hierarchy is not valid in the collection.
- The name of the specified Hierarchy is not valid in the collection.
- The compatibility-level of the specified Hierarchy is not valid in the collection.
Applies to
Insert(Int32)
Creates a new Hierarchy object using a generated unique Name and identifier, inserts it to the collection at the specified index and returns the new Hierarchy created.
public Microsoft.AnalysisServices.Hierarchy Insert (int index);
override this.Insert : int -> Microsoft.AnalysisServices.Hierarchy
Public Function Insert (index As Integer) As Hierarchy
Parameters
Returns
The newly created Hierarchy object.
Exceptions
The specified index is not a valid value (less than zero or bigger then the total number of elements).