3 writes to _typeParent
System.Reflection.Emit (3)
System\Reflection\Emit\TypeBuilderImpl.cs (3)
570_typeParent = parent; 576_typeParent = _module.GetTypeFromCoreAssembly(CoreTypeId.Object); 586_typeParent = null;
22 references to _typeParent
System.Reflection.Emit (22)
System\Reflection\Emit\TypeBuilderImpl.cs (22)
214if (_typeParent!.IsConstructedGenericType && 215(_typeParent.GetGenericTypeDefinition() is TypeBuilderImpl || _module.ContainsTypeBuilder(_typeParent.GetGenericArguments()))) 218con = GetConstructor(_typeParent, _typeParent.GetGenericTypeDefinition().GetConstructor( 223con = _typeParent.GetConstructor(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic, null, EmptyTypes, null); 355if (_typeParent != null) 357foreach (Type @interface in _typeParent.GetInterfaces()) 638public override Type? BaseType => _typeParent; 815if (!bindingAttr.HasFlag(BindingFlags.DeclaredOnly) && _typeParent != null) 817methods.AddRange(_typeParent.GetMethods(bindingAttr)); 843if (found == null && !bindingAttr.HasFlag(BindingFlags.DeclaredOnly) && _typeParent != null) 847found = _typeParent.GetMethod(name, bindingAttr); 851found = _typeParent.GetMethod(name, bindingAttr, binder, callConvention, types, modifiers); 881if (match == null && !bindingFlags.HasFlag(BindingFlags.DeclaredOnly) && _typeParent != null) 883match = _typeParent.GetField(name, bindingFlags); 934if (!bindingAttr.HasFlag(BindingFlags.DeclaredOnly) && _typeParent != null) 936fields.AddRange(_typeParent.GetFields(bindingAttr)); 980if (_typeParent != null) 982interfaces.AddRange(_typeParent.GetInterfaces()); 1040if (!bindingAttr.HasFlag(BindingFlags.DeclaredOnly) && _typeParent != null) 1042candidates.AddRange(_typeParent.GetProperties(bindingAttr));