Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Class: RT.Xml.Attribute

Summary

Represents an XML attribute.

Constructors

Attribute(string name, string value)
Represents an XML attribute.

Instance methods

void
Deconstruct(out string name, out string value)
Deconstructor.
string
  • Overrides: object.ToString()
Refer to the documentation for object.ToString.

Operators

ValueTuple<string, string>Converts an XML attribute into a string pair.
Attribute
implicit operator Attribute(ValueTuple<string, string> tup)
Converts a string pair into an XML attribute.

Instance properties

stringThe name of the attribute.
stringThe (unescaped) string content of the attribute.