Base:
12 references to Module
System.Reflection.Emit (12)
System\Reflection\Emit\EnumBuilderImpl.cs (1)
48public override Module Module => _typeBuilder.Module;
System\Reflection\Emit\FieldBuilderImpl.cs (1)
91public override Module Module => _typeBuilder.Module;
System\Reflection\Emit\ModuleBuilderImpl.cs (9)
989if (type is TypeBuilderImpl tb && Equals(tb.Module)) 1008if (member is TypeBuilderImpl tb && Equals(tb.Module)) 1097return (type.GetGenericTypeDefinition() is TypeBuilderImpl tb && Equals(tb.Module)) || 1104return (elementType is TypeBuilderImpl tbi && Equals(tbi.Module)) || IsConstructedFromTypeBuilder(elementType); 1110if ((ret is TypeBuilderImpl retTb && Equals(retTb.Module)) || IsConstructedFromTypeBuilder(ret)) 1115if ((paramType is TypeBuilderImpl paramTb && Equals(paramTb.Module)) || IsConstructedFromTypeBuilder(paramType)) 1127if ((type is TypeBuilderImpl tb && Equals(tb.Module)) || (type is GenericTypeParameterBuilderImpl gtb && Equals(gtb.Module))) 1143if (type is TypeBuilderImpl tb && Equals(tb.Module)) 1192arrayMethod.DeclaringType!.GetElementType() is TypeBuilderImpl tb && Equals(tb.Module);
System\Reflection\Emit\PropertyBuilderImpl.cs (1)
93public override Module Module => _containingType.Module;