3 types derived from TypeReference
AssemblyStripper (3)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\GenericParameter.cs (1)
33 internal sealed class GenericParameter : TypeReference {
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\TypeDefinition.cs (1)
31 internal sealed class TypeDefinition : TypeReference, IMemberDefinition, IHasSecurity {
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\TypeSpecification.cs (1)
33 internal abstract class TypeSpecification : TypeReference {
8 instantiations of TypeReference
AssemblyStripper (8)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Signatures\SignatureReader.cs (2)
709 TypeReference decType = new TypeReference (name, ns, asm); 711 TypeReference t = new TypeReference (outers [i], null, asm);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\DefaultImporter.cs (2)
166 type = new TypeReference (t.Name, string.Empty, asm, t.IsValueType); 169 type = new TypeReference (t.Name, t.Namespace, asm, t.IsValueType);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ReflectionHelper.cs (2)
246 type = new TypeReference (t.Name, string.Empty, asm, t.IsValueType); 249 type = new TypeReference (t.Name, t.Namespace, asm, t.IsValueType);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ReflectionReader.cs (2)
406 coreType = new TypeReference (parts [1], parts [0], Corlib); 567 TypeReference t = new TypeReference (
281 references to TypeReference
AssemblyStripper (281)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Cil\CilWorker.cs (2)
58 public Instruction Create (OpCode opcode, TypeReference type) 233 public Instruction Emit (OpCode opcode, TypeReference type)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Cil\CodeReader.cs (1)
346 TypeReference varType = m_reflectReader.GetTypeRefFromSig (
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Cil\CodeWriter.cs (5)
183 if (instr.Operand is TypeReference) 184 WriteToken (GetTypeToken ((TypeReference) instr.Operand)); 229 MetadataToken GetTypeToken (TypeReference type) 404 TypeReference type = var.VariableType; 572 static bool IsVoid (TypeReference type)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Cil\ExceptionHandler.cs (2)
42 TypeReference m_catchType; 75 public TypeReference CatchType {
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Cil\MethodBody.cs (3)
178 ni.Operand = context.Import ((TypeReference) instr.Operand); 181 if (instr.Operand is TypeReference) 182 ni.Operand = context.Import ((TypeReference) instr.Operand);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Cil\VariableDefinition.cs (2)
40 public VariableDefinition (TypeReference variableType) : base (variableType) 44 public VariableDefinition (string name, int index, MethodDefinition method, TypeReference variableType) :
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Cil\VariableReference.cs (4)
35 TypeReference m_variableType; 47 public TypeReference VariableType { 52 public VariableReference (TypeReference variableType) 57 public VariableReference (string name, int index, TypeReference variableType) : this (variableType)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Signatures\CustomAttrib.cs (1)
69 public TypeReference ElemType;
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Signatures\SignatureReader.cs (13)
658 TypeReference param, ref bool read, bool resolve) 681 TypeReference CreateEnumTypeReference (string enumName) 709 TypeReference decType = new TypeReference (name, ns, asm); 711 TypeReference t = new TypeReference (outers [i], null, asm); 722 TypeReference ReadTypeReference (byte [] data, BinaryReader br, out ElementType elemType) 731 TypeReference res; 743 TypeReference TypeReferenceFromElemType (ElementType elemType) 796 TypeReference elemType = ReadTypeReference (data, br, out na.FieldOrPropType); 803 CustomAttrib.Elem ReadElem (byte [] data, BinaryReader br, TypeReference elemType, ref bool read, bool resolve) 853 TypeReference typeRef = GetEnumUnderlyingType (elem.ElemType, resolve); 861 TypeReference GetEnumUnderlyingType (TypeReference enumType, bool resolve) 881 bool ReadSimpleValue (BinaryReader br, ref CustomAttrib.Elem elem, TypeReference type)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Signatures\SignatureWriter.cs (1)
417 static string GetEnumFullName (TypeReference type)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ArrayType.cs (3)
82 internal ArrayType (TypeReference elementType, ArrayShape shape) : base (elementType) 98 public ArrayType (TypeReference elementType, int rank) : base (elementType) 105 public ArrayType (TypeReference elementType) : this (elementType, 1)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\BaseReflectionVisitor.cs (3)
51 public virtual void VisitTypeReference (TypeReference type) 67 public virtual void VisitInterface (TypeReference interf) 75 public virtual void VisitExternType (TypeReference externType)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ConstraintCollection.cs (9)
43 public TypeReference this [int index] { 44 get { return List [index] as TypeReference; } 57 public void Add (TypeReference value) 62 public bool Contains (TypeReference value) 67 public int IndexOf (TypeReference value) 72 public void Insert (int index, TypeReference value) 77 public void Remove (TypeReference value) 84 if (! (o is TypeReference)) 85 throw new ArgumentException ("Must be of type " + typeof (TypeReference).FullName);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ConstructorCollection.cs (3)
129 else if (param is TypeReference) 130 pname = (param as TypeReference).FullName; 154 public MethodDefinition GetConstructor (bool isStatic, TypeReference [] parameters)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\CustomAttribute.cs (6)
125 public TypeReference GetFieldType (string fieldName) 127 return (TypeReference) FieldTypes [fieldName]; 130 public TypeReference GetPropertyType (string propertyName) 132 return (TypeReference) PropertyTypes [propertyName]; 135 public void SetFieldType (string fieldName, TypeReference type) 140 public void SetPropertyType (string propertyName, TypeReference type)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\DefaultImporter.cs (14)
73 TypeReference elementType = ImportTypeReference (original.ElementType, context); 85 foreach (TypeReference arg in git.GenericArguments) 90 TypeReference mt = (original as ModifierOptional).ModifierType; 93 TypeReference mt = (original as ModifierRequired).ModifierType; 119 if (gp.Owner is TypeReference) 129 TypeReference AdjustReference (TypeReference type, TypeReference reference) 142 public virtual TypeReference ImportTypeReference (TypeReference t, ImportContext context) 153 TypeReference type = m_module.TypeReferences [t.FullName]; 171 TypeReference contextType = context.GenericContext.Type; 211 foreach (TypeReference arg in gim.GenericArguments) 236 TypeReference contextType = context.GenericContext.Type;
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\EventDefinition.cs (1)
103 public EventDefinition (string name, TypeReference eventType,
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\EventReference.cs (3)
33 TypeReference m_eventType; 35 public TypeReference EventType { 40 public EventReference (string name, TypeReference eventType) : base (name)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ExternTypeCollection.cs (13)
47 public TypeReference this [int index] { 48 get { return this.BaseGet (index) as TypeReference; } 52 public TypeReference this [string fullName] { 53 get { return this.BaseGet (fullName) as TypeReference; } 91 public void Add (TypeReference value) 104 public bool Contains (TypeReference value) 114 public int IndexOf (TypeReference value) 120 public void Remove (TypeReference value) 127 TypeReference item = this [index]; 159 if (!(value is TypeReference)) 166 Add (value as TypeReference); 173 return Contains (value as TypeReference); 189 Remove (value as TypeReference);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\FieldDefinition.cs (1)
281 public FieldDefinition (string name, TypeReference fieldType,
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\FieldReference.cs (6)
35 TypeReference m_fieldType; 37 public TypeReference FieldType { 42 internal FieldReference (string name, TypeReference fieldType) : base (name) 47 public FieldReference (string name, TypeReference declaringType, TypeReference fieldType) : 55 TypeReference declaringType = DeclaringType;
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\GenericArgumentCollection.cs (9)
43 public TypeReference this [int index] { 44 get { return List [index] as TypeReference; } 57 public void Add (TypeReference value) 62 public bool Contains (TypeReference value) 67 public int IndexOf (TypeReference value) 72 public void Insert (int index, TypeReference value) 77 public void Remove (TypeReference value) 84 if (! (o is TypeReference)) 85 throw new ArgumentException ("Must be of type " + typeof (TypeReference).FullName);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\GenericContext.cs (6)
33 TypeReference m_type; 36 public TypeReference Type { 47 get { return m_type != null && m_type.GetType () == typeof (TypeReference); } 58 public GenericContext (TypeReference type, MethodReference meth) 66 if (provider is TypeReference) 67 m_type = provider as TypeReference;
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\GenericInstanceType.cs (1)
70 public GenericInstanceType (TypeReference elementType) : base (elementType)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\GenericParameter.cs (7)
70 if (m_owner is TypeReference) 71 return ((TypeReference) m_owner).Scope; 81 if (m_owner is TypeReference) 82 return ((TypeReference) m_owner).Module; 95 if (m_owner is TypeReference) 212 if (gp.Owner is TypeReference) 233 foreach (TypeReference constraint in gp.Constraints)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\IImporter.cs (2)
33 TypeReference ImportTypeReference (TypeReference type, ImportContext context);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\IMemberReference.cs (1)
34 TypeReference DeclaringType { get; }
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ImportContext.cs (2)
53 public TypeReference Import (TypeReference type)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\InterfaceCollection.cs (9)
43 public TypeReference this [int index] { 44 get { return List [index] as TypeReference; } 57 public void Add (TypeReference value) 62 public bool Contains (TypeReference value) 67 public int IndexOf (TypeReference value) 72 public void Insert (int index, TypeReference value) 77 public void Remove (TypeReference value) 84 if (! (o is TypeReference)) 85 throw new ArgumentException ("Must be of type " + typeof (TypeReference).FullName);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\IReflectionVisitor.cs (3)
37 void VisitTypeReference (TypeReference type); 41 void VisitInterface (TypeReference interf); 43 void VisitExternType (TypeReference externType);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\MemberReference.cs (2)
38 TypeReference m_decType; 47 public virtual TypeReference DeclaringType {
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\MetadataResolver.cs (3)
48 public TypeDefinition Resolve (TypeReference type) 212 static bool AreSame (TypeReference a, TypeReference b)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\MethodDefinition.cs (1)
558 public MethodDefinition (string name, MethodAttributes attrs, TypeReference returnType) :
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\MethodDefinitionCollection.cs (3)
132 else if (param is TypeReference) 133 pname = (param as TypeReference).FullName; 157 public MethodDefinition GetMethod (string name, TypeReference [] parameters)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\MethodReference.cs (3)
102 TypeReference declaringType, TypeReference returnType, 112 TypeReference declaringType = DeclaringType;
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\MethodReturnType.cs (3)
40 TypeReference m_returnType; 47 public TypeReference ReturnType { 91 public MethodReturnType (TypeReference retType)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\MethodSpecification.cs (1)
67 public override TypeReference DeclaringType {
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\Modifiers.cs (8)
33 TypeReference m_modifierType; 35 public TypeReference ModifierType { 59 public ModType (TypeReference elemType, TypeReference modType) : base (elemType) 71 public ModifierOptional (TypeReference elemType, TypeReference modType) : base (elemType, modType) 83 public ModifierRequired (TypeReference elemType, TypeReference modType) : base (elemType, modType)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ModuleDefinition.cs (9)
241 public TypeReference Import (Type type) 249 public TypeReference Import (Type type, TypeDefinition context) 258 public TypeReference Import (Type type, MethodDefinition context) 322 public TypeReference Import (TypeReference type) 330 public TypeReference Import (TypeReference type, TypeDefinition context) 339 public TypeReference Import (TypeReference type, MethodDefinition context)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\NullReferenceImporter.cs (2)
35 public TypeReference ImportTypeReference (TypeReference type, ImportContext context)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ParameterDefinition.cs (2)
154 public ParameterDefinition (TypeReference paramType) : 164 public ParameterDefinition (string name, int seq, ParameterAttributes attrs, TypeReference paramType) : base (name, seq, paramType)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ParameterReference.cs (3)
39 TypeReference m_paramType; 53 public TypeReference ParameterType { 71 public ParameterReference (string name, int sequence, TypeReference parameterType)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\PinnedType.cs (1)
33 public PinnedType (TypeReference pType) : base (pType)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\PointerType.cs (1)
41 public PointerType (TypeReference pType) : base (pType)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\PropertyDefinition.cs (1)
167 public PropertyDefinition (string name, TypeReference propertyType, PropertyAttributes attrs) : base (name, propertyType)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\PropertyReference.cs (3)
33 TypeReference m_propertyType; 36 public TypeReference PropertyType { 49 public PropertyReference (string name, TypeReference propertyType) : base (name)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ReferenceType.cs (1)
41 public ReferenceType (TypeReference type) : base (type)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ReflectionHelper.cs (8)
158 GenericInstanceType GetGenericType (Type t, TypeReference element, ImportContext context) 187 TypeReference GetTypeSpec (Type t, ImportContext context) 200 TypeReference elementType = ImportSystemType (t, context); 218 TypeReference AdjustReference (Type type, TypeReference reference) 232 public TypeReference ImportSystemType (Type t, ImportContext context) 240 TypeReference type = m_module.TypeReferences [GetTypeSignature (t)]; 365 TypeReference contextType = context.GenericContext.Type;
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ReflectionReader.cs (37)
51 protected TypeReference [] m_typeRefs; 52 protected TypeReference [] m_typeSpecs; 132 public TypeReference GetTypeRefAt (uint rid) 140 public TypeReference GetTypeSpecAt (uint rid, GenericContext context) 155 TypeReference tspec = m_typeSpecs [index]; 172 TypeReference CreateTypeSpecFromSig (TypeSpec ts, int index, GenericContext context) 174 TypeReference tspec = GetTypeRefFromSig (ts.Type, context); 225 TypeReference declaringType = GetTypeDefOrRef (mrefRow.Class, context); 229 TypeReference ct = declaringType; 238 TypeReference fieldType = GetTypeRefFromSig (fs.Type, nc); 269 MethodReference CreateMethodReferenceFromSig (MethodSig ms, string name, TypeReference declaringType, GenericContext context) 379 public TypeReference GetTypeDefOrRef (MetadataToken token, GenericContext context) 396 public TypeReference SearchCoreType (string fullName) 401 TypeReference coreType = m_module.TypeReferences [fullName]; 508 m_typeRefs = new TypeReference [typesRef.Rows.Count]; 513 m_typeRefs = new TypeReference [0]; 544 TypeReference parent = null; 567 TypeReference t = new TypeReference ( 586 m_typeSpecs = new TypeReference [tsTable.Rows.Count]; 821 TypeReference [] buffer = new TypeReference [etTable.Rows.Count]; 838 TypeReference exported = buffer [i]; 839 TypeReference owner = buffer [etRow.Implementation.RID - 1]; 845 TypeReference curs = buffer [i]; 877 TypeReference GetFixedArgType (CustomAttrib.FixedArg fa) 888 TypeReference GetNamedArgType (CustomAttrib.NamedArg na) 925 TypeReference paramType; 1009 public TypeReference GetModifierType (CustomMod [] cmods, TypeReference type) 1014 TypeReference ret = type; 1017 TypeReference modType; 1037 TypeReference retType; 1053 public TypeReference GetTypeRefFromSig (SigType t, GenericContext context) 1061 TypeReference vtr = GetTypeDefOrRef (vt.Type, context); 1158 TypeReference GetGenericArg (GenericArg arg, GenericContext context) 1160 TypeReference type = GetTypeRefFromSig (arg.Type, context); 1262 TypeReference fieldType = field.FieldType;
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ReflectionWriter.cs (20)
149 public TypeReference GetCoreType (string name) 174 static bool IsTypeSpec (TypeReference type) 179 public MetadataToken GetTypeDefOrRefToken (TypeReference type) 363 foreach (TypeReference tr in refs) 369 foreach (TypeReference t in orderedTypeRefs) { 417 foreach (TypeReference interf in interfaces) { 432 foreach (TypeReference ext in externs) { 717 void WriteConstant (IHasConstant hc, TypeReference type) 870 foreach (TypeReference constraint in gp.Constraints) { 1032 public SigType GetSigType (TypeReference type) 1078 if (gp.Owner is TypeReference) 1134 TypeReference elementType = (type as PointerType).ElementType; 1165 public GenericArg GetGenericArgSig (TypeReference type) 1172 public CustomMod [] GetCustomMods (TypeReference type) 1263 static bool IsByReferenceType (TypeReference type) 1360 public TypeSpec GetTypeSpecSig (TypeReference type) 1385 static CustomAttrib.Elem CreateElem (TypeReference type, object value) 1426 static CustomAttrib.FixedArg CreateFixedArg (TypeReference type, object value) 1432 TypeReference obj = ((ArrayType) type).ElementType; 1445 static CustomAttrib.NamedArg CreateNamedArg (TypeReference type, string name,
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\SentinelType.cs (1)
33 public SentinelType (TypeReference elementType) : base (elementType)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\TableComparers.cs (4)
67 TypeReference a = x as TypeReference; 68 TypeReference b = y as TypeReference;
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\TypeDefinition.cs (5)
34 TypeReference m_baseType; 54 public TypeReference BaseType { 467 TypeAttributes attributes, TypeReference baseType) : 490 TypeReference contextType = context.GenericContext.Type; 525 foreach (TypeReference intf in type.Interfaces)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\TypeDefinitionCollection.cs (2)
201 void Detach (TypeReference type) 206 void Attach (TypeReference type)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\TypeReference.cs (1)
150 public virtual TypeReference GetOriginalType ()
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\TypeReferenceCollection.cs (16)
47 public TypeReference this [int index] { 48 get { return this.BaseGet (index) as TypeReference; } 52 public TypeReference this [string fullName] { 53 get { return this.BaseGet (fullName) as TypeReference; } 91 public void Add (TypeReference value) 103 foreach (TypeReference item in this) 109 public bool Contains (TypeReference value) 119 public int IndexOf (TypeReference value) 125 public void Remove (TypeReference value) 134 TypeReference item = this [index]; 168 if (!(value is TypeReference)) 175 Add (value as TypeReference); 182 return Contains (value as TypeReference); 198 Remove (value as TypeReference); 201 void Detach (TypeReference type) 206 void Attach (TypeReference type)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\TypeSpecification.cs (4)
35 private TypeReference m_elementType; 61 public TypeReference ElementType { 70 internal TypeSpecification (TypeReference elementType) : base (string.Empty, string.Empty) 75 public override TypeReference GetOriginalType ()