RoleMemberCollection.Insert Method (Int32, RoleMember)
Applies To: SQL Server (starting with 2016)
Inserts a RoleMember into the collection at the specified index.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices.Core (in Microsoft.AnalysisServices.Core.dll)
Syntax
public void Insert(
int index,
RoleMember item
)
public:
void Insert(
int index,
RoleMember^ item
)
member Insert :
index:int *
item:RoleMember -> unit
Public Sub Insert (
index As Integer,
item As RoleMember
)
Parameters
index
Type: System.Int32The zero-based index at which the RoleMember is inserted.
item
Type: Microsoft.AnalysisServices.RoleMemberThe RoleMember to insert into the collection.
See Also
RoleMemberCollection Class
Microsoft.AnalysisServices Namespace
Return to top