6 references to TypeConstructorName
System.Private.CoreLib (2)
System\Reflection\Runtime\General\MetadataReaderExtensions.NativeFormat.cs (1)
142
return nameHandle.StringEquals(ConstructorInfo.ConstructorName, reader) || nameHandle.StringEquals(ConstructorInfo.
TypeConstructorName
, reader);
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.CoreGetDeclared.cs (1)
54
if (optionalNameFilter == null || optionalNameFilter.Matches(syntheticConstructor.IsStatic ? ConstructorInfo.
TypeConstructorName
: ConstructorInfo.ConstructorName))
System.Reflection.Emit (3)
System\Reflection\Emit\MethodBuilderImpl.cs (1)
98
return _name.Equals(ConstructorInfo.ConstructorName) || _name.Equals(ConstructorInfo.
TypeConstructorName
);
System\Reflection\Emit\TypeBuilderImpl.cs (2)
176
name = ConstructorInfo.
TypeConstructorName
;
413
return new ConstructorBuilderImpl(ConstructorInfo.
TypeConstructorName
, attr, CallingConventions.Standard, null, null, null, _module, this);
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\General\Ecma\EcmaHelpers.cs (1)
109
return stringComparer.Equals(nameHandle, ConstructorInfo.ConstructorName) || stringComparer.Equals(nameHandle, ConstructorInfo.
TypeConstructorName
);