2 overrides of GetNamedArguments
System.Private.CoreLib (2)
System\Reflection\Runtime\CustomAttributes\NativeFormat\NativeFormatCustomAttributeData.cs (1)
156
internal sealed override IList<CustomAttributeNamedArgument>
GetNamedArguments
(bool throwIfMissingMetadata)
System\Reflection\Runtime\CustomAttributes\RuntimePseudoCustomAttributeData.cs (1)
59
internal sealed override IList<CustomAttributeNamedArgument>
GetNamedArguments
(bool throwIfMissingMetadata)
2 references to GetNamedArguments
System.Private.CoreLib (2)
System\Reflection\Runtime\CustomAttributes\RuntimeCustomAttributeData.cs (2)
35
return new ReadOnlyCollection<CustomAttributeNamedArgument>(
GetNamedArguments
(throwIfMissingMetadata: true));
49
IList<CustomAttributeNamedArgument> namedArguments =
GetNamedArguments
(throwIfMissingMetadata: false);