1 write to _attrNameLookupArray
System.Web (1)
UI\HTMLTextWriter.cs (1)
231
_attrNameLookupArray
= new AttributeInformation[(int)HtmlTextWriterAttribute.VCardName + 1];
10 references to _attrNameLookupArray
System.Web (10)
UI\HTMLTextWriter.cs (10)
641
if ((int)key <
_attrNameLookupArray
.Length) {
642
_attrNameLookupArray
[(int)key] = new AttributeInformation(name, encode, isUrl);
717
if (attributeIndex >= 0 && attributeIndex <
_attrNameLookupArray
.Length) {
718
AttributeInformation info =
_attrNameLookupArray
[attributeIndex];
725
if (attributeIndex >= 0 && attributeIndex <
_attrNameLookupArray
.Length) {
726
AttributeInformation info =
_attrNameLookupArray
[attributeIndex];
805
if (0 <= (int)attrKey && (int)attrKey <
_attrNameLookupArray
.Length) {
806
encode =
_attrNameLookupArray
[(int)attrKey].encode;
833
if ((int)attrKey >= 0 && (int)attrKey <
_attrNameLookupArray
.Length)
834
return
_attrNameLookupArray
[(int)attrKey].name;