5 overrides of Constructor
System.Private.CoreLib (1)
src\System\Reflection\RuntimeCustomAttributeData.cs (1)
415
public override ConstructorInfo
Constructor
=> m_ctor;
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingCustomAttributeData.cs (1)
20
public override ConstructorInfo
Constructor
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\CustomAttributes\RoCustomAttributeData.cs (1)
19
public sealed override ConstructorInfo
Constructor
=> _lazyConstructorInfo ??= ComputeConstructor();
System.Xaml.Tests (2)
System\Xaml\XamlSchemaContextTests.cs (1)
1042
public override ConstructorInfo
Constructor
=> ConstructorResult!;
System\Xaml\XamlTypeTests.cs (1)
5306
public override ConstructorInfo
Constructor
=> ConstructorResult!;
28 references to Constructor
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (1)
Debugger\MemberInfo\CustomAttributeDataImpl.cs (1)
29
return new ConstructorInfoImpl(CustomAttributeData.
Constructor
);
Microsoft.CodeAnalysis.Test.Utilities (1)
Platform\Custom\MetadataSignatureHelper.cs (1)
92
AppendType(attribute.
Constructor
.DeclaringType, sb);
PresentationBuildTasks (5)
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\XamlReaderHelper.cs (2)
4938
if( attributes[i].
Constructor
.ReflectedType == KnownTypes.Types[(int)KnownElements.ContentWrapperAttribute] )
5713
if (cad.
Constructor
.ReflectedType == attrType)
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\XmlnsCache.cs (1)
220
ConstructorInfo cinfo = data.
Constructor
;
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\ReflectionHelper.cs (2)
291
if (cad.
Constructor
.ReflectedType == attrType)
324
ConstructorInfo cinfo = cad.
Constructor
;
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (2)
3014
if (AttributeTypeNamesMatch(attributeType, data.
Constructor
.ReflectedType!))
3046
if (AttributeTypeNamesMatch(attributeType, data.
Constructor
.ReflectedType!))
src\libraries\System.Private.CoreLib\src\System\Reflection\CustomAttributeData.cs (2)
52
vsb.Append(
Constructor
.DeclaringType!.FullName);
82
public virtual Type AttributeType =>
Constructor
.DeclaringType!;
src\System\Reflection\RuntimeCustomAttributeData.cs (1)
227
if (attrs[i].
Constructor
.DeclaringType == caType)
src\System\Reflection\RuntimeParameterInfo.cs (2)
376
Debug.Assert(attr.
Constructor
.DeclaringType == typeof(DecimalConstantAttribute));
397
Debug.Assert(attr.
Constructor
.DeclaringType == typeof(DateTimeConstantAttribute));
src\System\RuntimeType.CoreCLR.cs (1)
1590
if (ReferenceEquals(attrs[i].
Constructor
.DeclaringType, DefaultMemberAttrType))
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingCustomAttributeData.cs (1)
22
get { return UnderlyingAttribute.
Constructor
; }
System.Xaml (10)
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\ReflectionHelper.cs (2)
291
if (cad.
Constructor
.ReflectedType == attrType)
324
ConstructorInfo cinfo = cad.
Constructor
;
System\Xaml\MS\Impl\XmlNsInfo.cs (5)
168
if (LooseTypeExtensions.AssemblyQualifiedNameEquals(cad.
Constructor
.DeclaringType, typeof(XmlnsDefinitionAttribute)))
259
if (LooseTypeExtensions.AssemblyQualifiedNameEquals(cad.
Constructor
.DeclaringType, typeof(InternalsVisibleToAttribute)))
318
if (LooseTypeExtensions.AssemblyQualifiedNameEquals(cad.
Constructor
.DeclaringType, typeof(XmlnsCompatibleWithAttribute)))
371
if (LooseTypeExtensions.AssemblyQualifiedNameEquals(cad.
Constructor
.DeclaringType, typeof(XmlnsPrefixAttribute)))
421
if (LooseTypeExtensions.AssemblyQualifiedNameEquals(cad.
Constructor
.DeclaringType, typeof(RootNamespaceAttribute)))
System\Xaml\Schema\Reflector.cs (3)
521
if (TypesAreEqual(_attributeData[i].
Constructor
.DeclaringType, attributeType))
535
if (TypesAreEqual(_attributeData[i].
Constructor
.DeclaringType, attributeType))
545
cad.
Constructor
.DeclaringType, Member, expectedCount, expectedType));
System.Xaml.Tests (2)
System\Xaml\XamlTypeTests.cs (2)
5212
ConstructorResult = new CustomConstructorInfo(c.
Constructor
)
5214
DeclaringTypeResult = new ReflectionOnlyType(c.
Constructor
.DeclaringType!)