MiningStructurePermissionCollection.Add Method

Definition

Overloads

Add(MiningStructurePermission)

Adds the specified MiningStructurePermission to the end of the collection.

Add(String)

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

Add(String, String)

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

Add(String, String, String)

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

Add(MiningStructurePermission)

Adds the specified MiningStructurePermission to the end of the collection.

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

Parameters

Returns

The zero-based index at which the Microsoft.AnalysisServices.{0} 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 MiningStructurePermission is not valid in the collection.
  • The name of the specified MiningStructurePermission is not valid in the collection.
  • The compatibility-level of the specified MiningStructurePermission is not valid in the collection.

Applies to

Add(String)

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

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

Parameters

roleId
String

The RoleID for the new MiningStructurePermission object.

Returns

The newly created MiningStructurePermission object.

Applies to

Add(String, String)

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

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

Parameters

roleId
String

The RoleID for the new MiningStructurePermission object.

name
String

The Name for the new MiningStructurePermission object.

Returns

The newly created MiningStructurePermission object.

Exceptions

The specified name is not valid in the collection.

Remarks

The specified name must be unique within the collection. The identifier for the new MiningStructurePermission object is generated based on the specified name.

Applies to

Add(String, String, String)

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

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

Parameters

roleId
String

The RoleID for the new MiningStructurePermission object.

name
String

The Name for the new MiningStructurePermission object.

id
String

The identifier for the new MiningStructurePermission object.

Returns

The newly created MiningStructurePermission object.

Exceptions

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

Remarks

The specified name and identifier must be unique within the collection.

Applies to