12 writes to _representation
System.AddIn (12)
System\Addin\MiniReflection\TypeInfo.cs (12)
83_representation = Representation.Token; 91_representation |= Representation.Name; 105_representation = Representation.Token | Representation.Name | Representation.AssemblyQualifiedName; 121_representation = Representation.Token | Representation.Name | Representation.AssemblyQualifiedName; 141_representation = Representation.TypeRef | Representation.Name; 174_representation |= Representation.ReflectionType; 183_representation |= Representation.AssemblyQualifiedName; 198_representation = Representation.Name | Representation.AssemblyQualifiedName | Representation.ReflectionType; 211_representation = (Representation) info.GetInt32(RepresentationFieldName); 381_representation |= Representation.AssemblyQualifiedName; 403_representation |= Representation.AssemblyQualifiedName; 432_representation |= Representation.Name;
7 references to _representation
System.AddIn (7)
System\Addin\MiniReflection\TypeInfo.cs (7)
212System.Diagnostics.Contracts.Contract.Assert((_representation & Representation.ReflectionType) == 0); 224Representation r = _representation & ~Representation.ReflectionType; 243get { return (_representation & Representation.AssemblyQualifiedName) != 0; } 247get { return (_representation & Representation.Name) != 0; } 253get { return (_representation & Representation.Token) != 0; } 258get { return (_representation & Representation.ReflectionType) != 0; } 262get { return (_representation & Representation.TypeRef) != 0; }