<PackageReference Include="System.ServiceModel.Primitives" Version="6.2.0" />

System.ServiceModel.Channels.XmlAttributeHolder

namespace System.ServiceModel.Channels { internal struct XmlAttributeHolder { public static XmlAttributeHolder[] emptyArray; public string Prefix { get; } public string NamespaceUri { get; } public string LocalName { get; } public string Value { get; } public XmlAttributeHolder(string prefix, string localName, string ns, string value); public void WriteTo(XmlWriter writer); public static void WriteAttributes(XmlAttributeHolder[] attributes, XmlWriter writer); public static XmlAttributeHolder[] ReadAttributes(XmlDictionaryReader reader); public static XmlAttributeHolder[] ReadAttributes(XmlDictionaryReader reader, ref int maxSizeOfHeaders); public static string GetAttribute(XmlAttributeHolder[] attributes, string localName, string ns); } }