Share via


TestResultParameterCollection.Item Property (String)

 

Gets the specified name from the* *test result parameter collection.

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

Syntax

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

Parameters

Property Value

Type: Microsoft.TeamFoundation.TestManagement.Client.ITestResultParameter

Specified test result parameter. Returns a null if the name is not found.

Exceptions

Exception Condition
KeyNotFoundException

name is null.

See Also

ITestResultParameter
Item Overload
TestResultParameterCollection Class
Microsoft.TeamFoundation.TestManagement.Client Namespace

Return to top