ConditionedSqlList.Item Property
Do not reference this member directly in your code. It supports the SQL Server infrastructure. Gets the ConditionedSql object at the specified index.
Namespace: Microsoft.SqlServer.Management.Sdk.Sfc
Assembly: Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Syntax
'Declaration
Public ReadOnly Default Property Item ( _
i As Integer _
) As ConditionedSql
Get
'Usage
Dim instance As ConditionedSqlList
Dim i As Integer
Dim value As ConditionedSql
value = instance(i)
public ConditionedSql this[
int i
] { get; }
public:
property ConditionedSql^ default[int i] {
ConditionedSql^ get (int i);
}
member Item : ConditionedSql
JScript supports the use of indexed properties, but not the declaration of new ones.
Parameters
- i
Type: System.Int32
The zero-based index of the object to get.
Property Value
Type: Microsoft.SqlServer.Management.Sdk.Sfc.ConditionedSql
The ConditionedSql object at the specified index.