Table of Contents

Class XlfData

Namespace
SunamoDevCode.FileFormats
Assembly
SunamoDevCode.dll

Represents data from an XLF (XML Localization Interchange File Format) file including trans-units and metadata.

public class XlfData
Inheritance
XlfData
Inherited Members
Extension Methods

Properties

AllIds

Gets or sets the list of all translation unit IDs.

public List<string> AllIds { get; set; }

Property Value

List<string>

Group

Gets or sets the group XML element.

public XElement Group { get; set; }

Property Value

XElement

Path

Gets or sets the file path to the XLF file.

public string Path { get; set; }

Property Value

string

TransUnits

Gets or sets the list of trans-unit XML elements.

public List<XElement> TransUnits { get; set; }

Property Value

List<XElement>

XmlDocument

Gets or sets the XML document.

public XDocument XmlDocument { get; set; }

Property Value

XDocument

Methods

FillIds()

Fills the AllIds list with IDs from all trans-units.

public void FillIds()