ConditionCollection.Item Property (String)
Gets a Condition object in the collection by name.
Namespace: Microsoft.SqlServer.Management.Dmf
Assembly: Microsoft.SqlServer.Dmf (in Microsoft.SqlServer.Dmf.dll)
Syntax
'Declaration
Public ReadOnly Default Property Item ( _
name As String _
) As Condition
Get
'Usage
Dim instance As ConditionCollection
Dim name As String
Dim value As Condition
value = instance(name)
public Condition this[
string name
] { get; }
public:
property Condition^ default[String^ name] {
Condition^ get (String^ name);
}
member Item : Condition
JScript supports the use of indexed properties, but not the declaration of new ones.
Parameters
- name
Type: System.String
A String value that specifies the name of the Condition object in the ConditionCollection collection.
Property Value
Type: Microsoft.SqlServer.Management.Dmf.Condition
A Condition object value that represents the condition that has the specified name.
Remarks
This namespace, class, or member is supported only in version 2.0 of the Microsoft .NET Framework.
See Also