Class XlfNote
- Namespace
- SunamoXliffParser
- Assembly
- SunamoXliffParser.dll
Represents a note element in an XLIFF document used to add localization-related comments. The content may be instructions from developers, comments from translators, or any comment from anyone involved in processing the XLIFF file.
public class XlfNote
- Inheritance
-
XlfNote
- Inherited Members
- Extension Methods
Constructors
XlfNote(XElement)
Initializes a new instance of the XlfNote class.
public XlfNote(XElement node)
Parameters
nodeXElementThe XML element representing the note.
Properties
Optional
Gets the optional attributes of this note.
public XlfNote.Optionals Optional { get; }
Property Value
Value
Gets or sets the text content of the note.
public string Value { get; set; }
Property Value
Methods
GetNode()
Gets the underlying XML element of this note.
public XElement GetNode()
Returns
- XElement
The XML element representing this note.