ClrAssemblyFileCollection.Item Property (Int32)

 

Applies To: SQL Server (starting with 2016)

Gets or sets the ClrAssemblyFile at the specified index from the collection.

Namespace:   Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices.Core (in Microsoft.AnalysisServices.Core.dll)

Syntax

public ClrAssemblyFile this[
    int index
] { get; set; }
public:
property ClrAssemblyFile^ default[
    int index
] {
    ClrAssemblyFile^ get(int index);
    void set(int index, ClrAssemblyFile^ value);
}
member Item : 
        index:int -> ClrAssemblyFile with get, set
Public Property Item (
    index As Integer
) As ClrAssemblyFile

Parameters

Property Value

Type: Microsoft.AnalysisServices.ClrAssemblyFile

The ClrAssemblyFile at the specified index.

Exceptions

Exception Condition
ArgumentOutOfRangeException

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

See Also

ClrAssemblyFileCollection Class
Microsoft.AnalysisServices Namespace

Return to top