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)
212
System.Diagnostics.Contracts.Contract.Assert((
_representation
& Representation.ReflectionType) == 0);
224
Representation r =
_representation
& ~Representation.ReflectionType;
243
get { return (
_representation
& Representation.AssemblyQualifiedName) != 0; }
247
get { return (
_representation
& Representation.Name) != 0; }
253
get { return (
_representation
& Representation.Token) != 0; }
258
get { return (
_representation
& Representation.ReflectionType) != 0; }
262
get { return (
_representation
& Representation.TypeRef) != 0; }