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; 831if (!bindingAttr.HasFlag(BindingFlags.DeclaredOnly) && _typeParent != null) 833methods.AddRange(_typeParent.GetMethods(bindingAttr)); 859if (found == null && !bindingAttr.HasFlag(BindingFlags.DeclaredOnly) && _typeParent != null) 863found = _typeParent.GetMethod(name, bindingAttr); 867found = _typeParent.GetMethod(name, bindingAttr, binder, callConvention, types, modifiers); 897if (match == null && !bindingFlags.HasFlag(BindingFlags.DeclaredOnly) && _typeParent != null) 899match = _typeParent.GetField(name, bindingFlags); 950if (!bindingAttr.HasFlag(BindingFlags.DeclaredOnly) && _typeParent != null) 952fields.AddRange(_typeParent.GetFields(bindingAttr)); 996if(_typeParent != null) 998interfaces.AddRange(_typeParent.GetInterfaces()); 1056if (!bindingAttr.HasFlag(BindingFlags.DeclaredOnly) && _typeParent != null) 1058candidates.AddRange(_typeParent.GetProperties(bindingAttr));