Rebel.Cms.Web.TypedAttributeExtensions.HasValue C# (CSharp) Method

HasValue() private method

private HasValue ( this attr ) : bool
attr this
return bool
        public static bool HasValue(this TypedAttribute attr)
        {
            HiveId value = HiveId.Parse(attr.DynamicValue);
            return !value.IsNullValueOrEmpty();
        }
    }
TypedAttributeExtensions