5 writes to _flags
System.Private.Xml (5)
System\Xml\Dom\XmlName.cs (5)
272_flags = (byte)((_flags & ~ValidityMask) | (byte)(value)); 277if (value) _flags = (byte)(_flags | IsDefaultBit); 278else _flags = (byte)(_flags & ~IsDefaultBit); 283if (value) _flags = (byte)(_flags | IsNilBit); 284else _flags = (byte)(_flags & ~IsNilBit);
11 references to _flags
System.Private.Xml (11)
System\Xml\Dom\XmlName.cs (11)
218return ownerDoc.CanReportValidity ? (XmlSchemaValidity)(_flags & ValidityMask) : XmlSchemaValidity.NotKnown; 226return (_flags & IsDefaultBit) != 0; 234return (_flags & IsNilBit) != 0; 272_flags = (byte)((_flags & ~ValidityMask) | (byte)(value)); 277if (value) _flags = (byte)(_flags | IsDefaultBit); 278else _flags = (byte)(_flags & ~IsDefaultBit); 283if (value) _flags = (byte)(_flags | IsNilBit); 284else _flags = (byte)(_flags & ~IsNilBit); 290&& schemaInfo.Validity == (XmlSchemaValidity)(_flags & ValidityMask) 291&& schemaInfo.IsDefault == ((_flags & IsDefaultBit) != 0) 292&& schemaInfo.IsNil == ((_flags & IsNilBit) != 0)