RoleCollection.Add Method

Definition

Overloads

Add()

Creates a new Role object using a generated unique Name and identifier, adds it to the end of the collection and returns the new Role created.

Add(Role)

Adds the specified Role to the end of the collection.

Add(String)

Creates a new Role object using the specified name, adds it to the end of the collection and returns the new Role created.

Add(String, String)

Creates a new Role object using the specified name and identifier, adds it to the end of the collection and returns the new Role created.

Add()

Creates a new Role object using a generated unique Name and identifier, adds it to the end of the collection and returns the new Role created.

public Microsoft.AnalysisServices.Role Add ();
override this.Add : unit -> Microsoft.AnalysisServices.Role
Public Function Add () As Role

Returns

The newly created Role object.

Applies to

Add(Role)

Adds the specified Role to the end of the collection.

public int Add (Microsoft.AnalysisServices.Role item);
override this.Add : Microsoft.AnalysisServices.Role -> int
Public Function Add (item As Role) As Integer

Parameters

item
Role

The Role to be added.

Returns

The zero-based index at which the Role has been added to the collection.

Exceptions

  • The specified item is a null reference (Nothing in Visual Basic).
  • The specified item already esists in the collection.
  • The identifier of the specified Role is not valid in the collection.
  • The name of the specified Role is not valid in the collection.
  • The compatibility-level of the specified Role is not valid in the collection.

Applies to

Add(String)

Creates a new Role object using the specified name, adds it to the end of the collection and returns the new Role created.

public Microsoft.AnalysisServices.Role Add (string name);
override this.Add : string -> Microsoft.AnalysisServices.Role
Public Function Add (name As String) As Role

Parameters

name
String

The Name for the new Role object.

Returns

The newly created Role object.

Exceptions

The specified name is not valid in the collection.

Remarks

The identifier for the new Role object is generated based on the specified name.

Applies to

Add(String, String)

Creates a new Role object using the specified name and identifier, adds it to the end of the collection and returns the new Role created.

public Microsoft.AnalysisServices.Role Add (string name, string id);
override this.Add : string * string -> Microsoft.AnalysisServices.Role
Public Function Add (name As String, id As String) As Role

Parameters

name
String

The Name for the new Role object.

id
String

The identifier for the new Role object.

Returns

The newly created Role object.

Exceptions

  • The specified name is not valid in the collection.
  • The specified identifier is not valid in the collection.

Applies to