FileSegmentCollection.Item Property (Int32)

 

Gets the file segment in the collection at the specified index.

Namespace:   Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

public FileSegment this[
    int index
] { get; }
public:
property FileSegment^ default[
    int index
] {
    FileSegment^ get(int index);
}
member Item : 
        index:int -> FileSegment with get
Public ReadOnly Property Item (
    index As Integer
) As FileSegment

Parameters

  • index
    Type: System.Int32

    The zero-based index at which to get the file segment.

Property Value

Type: Microsoft.SqlServer.Management.Smo.FileSegment

The file segment at the specified index.

See Also

FileSegmentCollection Class
Microsoft.SqlServer.Management.Smo Namespace

Return to top