C# Class WebMarkupMin.Core.Parsers.XmlAttribute

XML attribute
Datei anzeigen Open project: Taritsyn/WebMarkupMin Class Usage Examples

Public Methods

Method Description
XmlAttribute ( string name, string value ) : System.IO

Constructs instance of XML attribute

XmlAttributeDecode ( string value ) : string

Converts a string that has been XML-encoded into a decoded string

XmlAttributeEncode ( string value ) : string

Converts a string to an XML-encoded string

Private Methods

Method Description
ContainsXmlAttributeEncodingChars ( string value ) : bool

Method Details

XmlAttribute() public method

Constructs instance of XML attribute
public XmlAttribute ( string name, string value ) : System.IO
name string Name
value string Value
return System.IO

XmlAttributeDecode() public static method

Converts a string that has been XML-encoded into a decoded string
public static XmlAttributeDecode ( string value ) : string
value string The string to decode
return string

XmlAttributeEncode() public static method

Converts a string to an XML-encoded string
public static XmlAttributeEncode ( string value ) : string
value string The string to encode
return string