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