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