System.Data.Constraint.CheckStateForProperty C# (CSharp) 메소드

CheckStateForProperty() 보호된 메소드

protected CheckStateForProperty ( ) : void
리턴 void
        protected void CheckStateForProperty()
        {
            try
            {
                CheckState();
            }
            catch (Exception e) when (Common.ADP.IsCatchableExceptionType(e))
            {
                throw ExceptionBuilder.BadObjectPropertyAccess(e.Message);
            }
        }