Archetype.MetaObjects.DelegatingMetaObject.GetTypeRestriction C# (CSharp) Метод

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

Gets the type restrictions for the current target DynamicMetaObject.Value and Expression.
protected GetTypeRestriction ( ) : BindingRestrictions
Результат BindingRestrictions
        protected virtual BindingRestrictions GetTypeRestriction()
        {
            if ( Value == null && HasValue )
            {
                return BindingRestrictions.GetInstanceRestriction( Expression, null );
            }
            return BindingRestrictions.GetTypeRestriction( Expression, LimitType );
        }