TargetSetCollection.Item Property (String)
Gets a TargetSet 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 ( _
filterTypeSkeleton As String _
) As TargetSet
Get
'Usage
Dim instance As TargetSetCollection
Dim filterTypeSkeleton As String
Dim value As TargetSet
value = instance(filterTypeSkeleton)
public TargetSet this[
string filterTypeSkeleton
] { get; }
public:
property TargetSet^ default[String^ filterTypeSkeleton] {
TargetSet^ get (String^ filterTypeSkeleton);
}
member Item : TargetSet
JScript supports the use of indexed properties, but not the declaration of new ones.
Parameters
- filterTypeSkeleton
Type: System.String
A String value that specifies the position of the TargetSet object in the TargetSetCollection collection.
Property Value
Type: Microsoft.SqlServer.Management.Dmf.TargetSet
A TargetSet object value that represents the target set 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