TestParameterCollection.Item Property (String)

 

Gets a test parameter from the collection as identified by the given parameter name.

Namespace:   Microsoft.TeamFoundation.TestManagement.Client
Assembly:  Microsoft.TeamFoundation.TestManagement.Client (in Microsoft.TeamFoundation.TestManagement.Client.dll)

Syntax

public ITestParameter this[
    string name
] { get; }
public:
property ITestParameter^ default[
    String^ name
] {
    ITestParameter^ get(String^ name);
}
member Item : 
        name:string -> ITestParameter with get
Public ReadOnly Property Item (
    name As String
) As ITestParameter

Parameters

Property Value

Type: Microsoft.TeamFoundation.TestManagement.Client.ITestParameter

The named parameter, if found; null if not found.

See Also

ITestParameter
Item Overload
TestParameterCollection Class
Microsoft.TeamFoundation.TestManagement.Client Namespace

Return to top