1 write to TagPrefix
System.Web (1)
Configuration\TagPrefixInfo.cs (1)
83TagPrefix = tagPrefix;
11 references to TagPrefix
System.Web (11)
Configuration\PagesSection.cs (4)
721UserControlRegisterEntry ucRegisterEntry = new UserControlRegisterEntry(tpi.TagPrefix, tpi.TagName); 735TagNamespaceRegisterEntry nsRegisterEntry = new TagNamespaceRegisterEntry(tpi.TagPrefix, tpi.Namespace, tpi.Assembly); 738entries = (ArrayList)tagNamespaceRegisterEntries[tpi.TagPrefix]; 741tagNamespaceRegisterEntries[tpi.TagPrefix] = entries;
Configuration\TagPrefixCollection.cs (2)
92return info.TagPrefix + ":" + info.Namespace + ":" + 96return info.TagPrefix + ":" + info.TagName;
Configuration\TagPrefixInfo.cs (4)
92return StringUtil.Equals(TagPrefix, ns.TagPrefix) && 99return TagPrefix.GetHashCode() ^ TagName.GetHashCode() ^ 178if (System.Web.UI.Util.ContainsWhiteSpace(elem.TagPrefix)) {
UI\Util.cs (1)
134recompilationHash.AddObject(tpi.TagPrefix);