Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Initializes a new instance of the ValidationFailedException class by using the provided message, action name, condition, property name, friendly name, expected value, actual value, and inner exception.
Namespace: Microsoft.VisualStudio.TestTools.UITest.Extension
Assembly: Microsoft.VisualStudio.TestTools.UITest.Extension (in Microsoft.VisualStudio.TestTools.UITest.Extension.dll)
Syntax
'Declaration
Public Sub New ( _
message As String, _
actionName As String, _
condition As String, _
propertyName As String, _
friendlyName As String, _
expectedValue As String, _
actualValue As String, _
innerException As Exception _
)
public ValidationFailedException(
string message,
string actionName,
string condition,
string propertyName,
string friendlyName,
string expectedValue,
string actualValue,
Exception innerException
)
public:
ValidationFailedException(
String^ message,
String^ actionName,
String^ condition,
String^ propertyName,
String^ friendlyName,
String^ expectedValue,
String^ actualValue,
Exception^ innerException
)
new :
message:string *
actionName:string *
condition:string *
propertyName:string *
friendlyName:string *
expectedValue:string *
actualValue:string *
innerException:Exception -> ValidationFailedException
public function ValidationFailedException(
message : String,
actionName : String,
condition : String,
propertyName : String,
friendlyName : String,
expectedValue : String,
actualValue : String,
innerException : Exception
)
Parameters
message
Type: StringThe error message.
actionName
Type: StringThe name of the action where the error occurred.
condition
Type: StringAn indication of assert condition.
propertyName
Type: StringThe name of the property.
friendlyName
Type: StringA friendly name for the control.
expectedValue
Type: StringThe expected value of the property.
actualValue
Type: StringThe actual value of the property.
innerException
Type: ExceptionThe inner exception that caused this exception.
.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.
See Also
Reference
ValidationFailedException Class