Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Blocks the current thread until the specified property of this control is not equal to the specified value, or until the specified time-out expires.
Namespace: Microsoft.VisualStudio.TestTools.UITesting
Assembly: Microsoft.VisualStudio.TestTools.UITesting (in Microsoft.VisualStudio.TestTools.UITesting.dll)
Syntax
'Declaration
Public Function WaitForControlPropertyNotEqual ( _
propertyName As String, _
propertyValue As Object, _
millisecondsTimeout As Integer _
) As Boolean
public bool WaitForControlPropertyNotEqual(
string propertyName,
Object propertyValue,
int millisecondsTimeout
)
public:
bool WaitForControlPropertyNotEqual(
String^ propertyName,
Object^ propertyValue,
int millisecondsTimeout
)
member WaitForControlPropertyNotEqual :
propertyName:string *
propertyValue:Object *
millisecondsTimeout:int -> bool
public function WaitForControlPropertyNotEqual(
propertyName : String,
propertyValue : Object,
millisecondsTimeout : int
) : boolean
Parameters
- propertyName
Type: System.String
The name of the property.
- propertyValue
Type: System.Object
The value to test.
- millisecondsTimeout
Type: System.Int32
The number of milliseconds before time-out.
Return Value
Type: System.Boolean
true if the specified property does not equal propertyValue before the time-out; otherwise, false.
.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.