Table of Contents

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

node XElement

The XML element representing the note.

Properties

Optional

Gets the optional attributes of this note.

public XlfNote.Optionals Optional { get; }

Property Value

XlfNote.Optionals

Value

Gets or sets the text content of the note.

public string Value { get; set; }

Property Value

string

Methods

GetNode()

Gets the underlying XML element of this note.

public XElement GetNode()

Returns

XElement

The XML element representing this note.