System.Data.DataRelation.CheckStateForProperty C# (CSharp) Метод

CheckStateForProperty() защищенный Метод

Checks to ensure the DataRelation is a valid object, even if it doesn't belong to a .
protected CheckStateForProperty ( ) : void
Результат void
        protected void CheckStateForProperty()
        {
            try
            {
                CheckState();
            }
            catch (Exception e) when (ADP.IsCatchableExceptionType(e))
            {
                throw ExceptionBuilder.BadObjectPropertyAccess(e.Message);
            }
        }