ITestParameter.IsDataBound Property

 

Gets or sets a value indicating whether this parameter is bound to a field in a data set.

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

Syntax

bool IsDataBound { get; set; }
property bool IsDataBound {
    bool get();
    void set(bool value);
}
abstract IsDataBound : bool with get, set
Property IsDataBound As Boolean

Property Value

Type: System.Boolean

true if the parameter is bound to a field in a data set; otherwise, false.

Exceptions

Exception Condition
InvalidOperationException

The value is true and an attempt was made to set the value.

Remarks

If true, getting the value will always return null with no error.

See Also

ITestParameter Interface
Microsoft.TeamFoundation.TestManagement.Client Namespace

Return to top