7 writes to m_array
mscorlib (7)
system\security\permissions\principalpermission.cs (7)
130m_array = new IDRole[1]; 138m_array = new IDRole[1]; 150m_array = new IDRole[1]; 159m_array = new IDRole[1]; 168m_array = array; 548m_array = new IDRole[numChildren]; 562m_array = new IDRole[0];
86 references to m_array
mscorlib (86)
system\security\permissions\principalpermission.cs (86)
131m_array[0] = new IDRole(); 132m_array[0].m_authenticated = true; 133m_array[0].m_id = null; 134m_array[0].m_role = null; 139m_array[0] = new IDRole(); 140m_array[0].m_authenticated = false; 141m_array[0].m_id = ""; 142m_array[0].m_role = ""; 151m_array[0] = new IDRole(); 152m_array[0].m_authenticated = true; 153m_array[0].m_id = name; 154m_array[0].m_role = role; 160m_array[0] = new IDRole(); 161m_array[0].m_authenticated = isAuthenticated; 162m_array[0].m_id = name; 163m_array[0].m_role = role; 173for (int i = 0; i < m_array.Length; ++i) 175if ((m_array[i].m_id == null || !m_array[i].m_id.Equals( "" )) || 176(m_array[i].m_role == null || !m_array[i].m_role.Equals( "" )) || 177m_array[i].m_authenticated) 198for (int i = 0; i < m_array.Length; ++i) 200if (m_array[i].m_id != null || m_array[i].m_role != null || !m_array[i].m_authenticated) 232for (int i = 0; i < this.m_array.Length; ++i) 236for (int j = 0; j < operand.m_array.Length; ++j) 238if (operand.m_array[j].m_authenticated == this.m_array[i].m_authenticated && 239(operand.m_array[j].m_id == null || 240(this.m_array[i].m_id != null && this.m_array[i].m_id.Equals( operand.m_array[j].m_id ))) && 241(operand.m_array[j].m_role == null || 242(this.m_array[i].m_role != null && this.m_array[i].m_role.Equals( operand.m_array[j].m_role )))) 294for (int i = 0; i < this.m_array.Length; ++i) 296for (int j = 0; j < operand.m_array.Length; ++j) 298if (operand.m_array[j].m_authenticated == this.m_array[i].m_authenticated) 300if (operand.m_array[j].m_id == null || 301this.m_array[i].m_id == null || 302this.m_array[i].m_id.Equals( operand.m_array[j].m_id )) 311idrole.m_id = operand.m_array[j].m_id == null ? this.m_array[i].m_id : operand.m_array[j].m_id; 313if (operand.m_array[j].m_role == null || 314this.m_array[i].m_role == null || 315this.m_array[i].m_role.Equals( operand.m_array[j].m_role)) 317idrole.m_role = operand.m_array[j].m_role == null ? this.m_array[i].m_role : operand.m_array[j].m_role; 324idrole.m_authenticated = operand.m_array[j].m_authenticated; 328else if (operand.m_array[j].m_role == null || 329this.m_array[i].m_role == null || 330this.m_array[i].m_role.Equals( operand.m_array[j].m_role)) 340idrole.m_role = operand.m_array[j].m_role == null ? this.m_array[i].m_role : operand.m_array[j].m_role; 341idrole.m_authenticated = operand.m_array[j].m_authenticated; 392int combinedLength = this.m_array.Length + operand.m_array.Length; 396for (i = 0; i < this.m_array.Length; ++i) 398idrolesArray[i] = this.m_array[i]; 401for (j = 0; j < operand.m_array.Length; ++j) 403idrolesArray[i+j] = operand.m_array[j]; 428for(i = 0; i < m_array.Length; i++) 429hash += m_array[i].GetHashCode(); 435return new PrincipalPermission( m_array ); 472if (m_array == null) 477int count = this.m_array.Length; 483if (m_array[i].m_authenticated) 488(m_array[i].m_id == null || String.Compare( identity.Name, m_array[i].m_id, StringComparison.OrdinalIgnoreCase) == 0))) 490if (m_array[i].m_role == null) { 496if (wp != null && m_array[i].Sid != null) 497foundMatch = wp.IsInRole(m_array[i].Sid); 500foundMatch = principal.IsInRole(m_array[i].m_role); 530int count = m_array.Length; 533root.AddChild( m_array[i].ToXml() ); 558m_array[count++] = idrole;