DatabaseSegmentCollection.Item Property (Int32)

 

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

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

Syntax

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

Parameters

  • index
    Type: System.Int32

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

Property Value

Type: Microsoft.SqlServer.Management.Smo.DatabaseSegment

The database segment at the specified index.

See Also

Item Overload
DatabaseSegmentCollection Class
Microsoft.SqlServer.Management.Smo Namespace

Return to top