TestResultParameterCollection.Add Method (String, String, String)
Creates and adds a new test result parameter to the collection.
Namespace: Microsoft.TeamFoundation.TestManagement.Client
Assembly: Microsoft.TeamFoundation.TestManagement.Client (in Microsoft.TeamFoundation.TestManagement.Client.dll)
Syntax
'Declaration
Public Sub Add ( _
name As String, _
expectedValue As String, _
actualValue As String _
)
public void Add(
string name,
string expectedValue,
string actualValue
)
public:
void Add(
String^ name,
String^ expectedValue,
String^ actualValue
)
member Add :
name:string *
expectedValue:string *
actualValue:string -> unit
public function Add(
name : String,
expectedValue : String,
actualValue : String
)
Parameters
name
Type: StringName of the parameter.
expectedValue
Type: StringThe value that was expected.
actualValue
Type: StringThe value that was encountered.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.