System.ServiceModel.Channels.XmlAttributeHolder
struct 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);
}
}