2 overrides of GetConstructorArguments
System.Private.CoreLib (2)
System\Reflection\Runtime\CustomAttributes\NativeFormat\NativeFormatCustomAttributeData.cs (1)
99
internal sealed override IList<CustomAttributeTypedArgument>
GetConstructorArguments
(bool throwIfMissingMetadata)
System\Reflection\Runtime\CustomAttributes\RuntimePseudoCustomAttributeData.cs (1)
54
internal sealed override IList<CustomAttributeTypedArgument>
GetConstructorArguments
(bool throwIfMissingMetadata)
2 references to GetConstructorArguments
System.Private.CoreLib (2)
System\Reflection\Runtime\CustomAttributes\RuntimeCustomAttributeData.cs (2)
25
return new ReadOnlyCollection<CustomAttributeTypedArgument>(
GetConstructorArguments
(throwIfMissingMetadata: true));
42
IList<CustomAttributeTypedArgument> constructorArguments =
GetConstructorArguments
(throwIfMissingMetadata: false);