C# 클래스 Open.Core.Common.ValidationException

Error thrown during databinding validation.
Throw this within a property setting when the incoming databound value is invalid. The binding hooks to invoke the UI validation system are (example with TextBox):

Text="{Binding Text, Mode=TwoWay, NotifyOnValidationError=True, ValidatesOnExceptions=True}"

To avoid having validation exception caught by the Visual Studio debugger, add this exception type to the exclusion list.
1. Menu: Debug -> Exceptions... (Ctrl + Alt + E) -> Add...
2. Add 'Open.Core.Common.ValidationException' to the list. 3. Uncheck 'Thrown' and 'User Handled'.

상속: System.ArgumentException
파일 보기 프로젝트 열기: philcockfield/Open.TestHarness.SL

공개 메소드들

메소드 설명
ValidationException ( ) : System
ValidationException ( string message ) : System
ValidationException ( string message, Exception innerException ) : System

메소드 상세

ValidationException() 공개 메소드

public ValidationException ( ) : System
리턴 System

ValidationException() 공개 메소드

public ValidationException ( string message ) : System
message string
리턴 System

ValidationException() 공개 메소드

public ValidationException ( string message, Exception innerException ) : System
message string
innerException System.Exception
리턴 System