AspNetEdit.Editor.Persistence.TagAttributes.IsDataBound C# (CSharp) Метод

IsDataBound() публичный Метод

public IsDataBound ( string att ) : bool
att string
Результат bool
        public bool IsDataBound(string att)
        {
            if (att == null || !got_hashed)
                return false;

            return (StrUtils.StartsWith (att, "<%#") && StrUtils.EndsWith (att, "%>"));
        }