Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Creates and inserts an AttributePermission, with the specified identifier, into the collection at the specified index.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)
Syntax
'Declaration
Public Function Insert ( _
index As Integer, _
attributeId As String _
) As AttributePermission
'Usage
Dim instance As AttributePermissionCollection
Dim index As Integer
Dim attributeId As String
Dim returnValue As AttributePermission
returnValue = instance.Insert(index, attributeId)
public AttributePermission Insert(
int index,
string attributeId
)
public:
AttributePermission^ Insert(
int index,
String^ attributeId
)
member Insert :
index:int *
attributeId:string -> AttributePermission
public function Insert(
index : int,
attributeId : String
) : AttributePermission
Parameters
- index
Type: System.Int32
The zero-based index at which the new AttributePermission will be inserted.
- attributeId
Type: System.String
The attribute identifier of the AttributePermission to be inserted.
Return Value
Type: Microsoft.AnalysisServices.AttributePermission
A newly created AttributePermission.
Exceptions
Exception | Condition |
---|---|
ArgumentOutOfRangeException | index is less than zero. -or- index is equal to or greater than [H:Microsoft.AnalysisServices.ModelComponentCollection.Count]. |