4 writes to m_lAttributes
mscorlib (4)
system\security\securityelement.cs (4)
191m_lAttributes = null; 214m_lAttributes = list; 296m_lAttributes = new ArrayList( c_AttributesTypical ); 459element.m_lAttributes = this.m_lAttributes == null ? null : new ArrayList(this.m_lAttributes);
50 references to m_lAttributes
mscorlib (50)
system\security\permissions\keycontainerpermission.cs (3)
605int iMax = current.m_lAttributes.Count; 614String strAttrName = (String) current.m_lAttributes[i]; 615String strAttrValue = (String) current.m_lAttributes[i+1];
system\security\policy\policylevel.cs (12)
1335if (elem.m_lAttributes == null || elem.m_lAttributes.Count == 0) 1338int iMax = elem.m_lAttributes.Count; 1342string strAttrName = (string)elem.m_lAttributes[i]; 1345string strAttrValue = (string)elem.m_lAttributes[i+1]; 1347elem.m_lAttributes[i+1] = GenerateFriendlyName(strAttrValue, classes); 1372if (classes == null || elem.m_lAttributes == null || elem.m_lAttributes.Count == 0) 1375int iMax = elem.m_lAttributes.Count; 1379string strAttrName = (string)elem.m_lAttributes[i]; 1382string strAttrValue = (string)elem.m_lAttributes[i+1]; 1386elem.m_lAttributes[i+1] = className;
system\security\securitydocument.cs (4)
219if (elCurrent.m_lAttributes != null) 221for (int i = 0; i < elCurrent.m_lAttributes.Count; i+=2) 224AddString( (String)elCurrent.m_lAttributes[i], ref position ); 225AddString( (String)elCurrent.m_lAttributes[i+1], ref position );
system\security\securityelement.cs (31)
167if (m_lAttributes == null || m_lAttributes.Count == 0) 173Hashtable hashtable = new Hashtable( m_lAttributes.Count/2 ); 175int iMax = m_lAttributes.Count; 180hashtable.Add( m_lAttributes[i], m_lAttributes[i+1]); 294if (m_lAttributes == null) 300int iMax = m_lAttributes.Count; 305String strAttrName = (String)m_lAttributes[i]; 312m_lAttributes.Add(name); 313m_lAttributes.Add(value); 397if (m_lAttributes == null || other.m_lAttributes == null) 399if (m_lAttributes != other.m_lAttributes) 404int iMax = m_lAttributes.Count; 407if (iMax != other.m_lAttributes.Count) 412String lhs = (String)m_lAttributes[i]; 413String rhs = (String)other.m_lAttributes[i]; 459element.m_lAttributes = this.m_lAttributes == null ? null : new ArrayList(this.m_lAttributes); 679if (m_lAttributes != null && m_lAttributes.Count > 0) 683int iMax = m_lAttributes.Count; 688String strAttrName = (String)m_lAttributes[i]; 689String strAttrValue = (String)m_lAttributes[i+1]; 696if (i != m_lAttributes.Count - 2) 781if (m_lAttributes == null) 787int iMax = m_lAttributes.Count; 792String strAttrName = (String)m_lAttributes[i]; 796String strAttrValue = (String)m_lAttributes[i+1];