ClrAssemblyFileCollection.Insert Method (Int32, ClrAssemblyFile)

 

Applies To: SQL Server (starting with 2016)

Inserts a ClrAssemblyFile 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,
    ClrAssemblyFile item
)
public:
void Insert(
    int index,
    ClrAssemblyFile^ item
)
member Insert : 
        index:int *
        item:ClrAssemblyFile -> unit
Public Sub Insert (
    index As Integer,
    item As ClrAssemblyFile
)

Parameters

Exceptions

Exception Condition
ArgumentOutOfRangeException

index is less than zero.-or-index is equal to or greater than Count.

See Also

ClrAssemblyFileCollection Class
Microsoft.AnalysisServices Namespace

Return to top