Tlumach
  • Articles
  • API Reference
Search Results for

    Show / Hide Table of Contents
    • Tlumach
      • Base
        • ArbParser
        • ArbPlaceholder
        • BaseGenerator
        • BaseJsonParser
        • BaseKeyValueParser
        • BaseParser
        • BaseTableParser
        • BaseXMLParser
        • CsvParser
        • CultureNameMatchEventArgs
        • FileFormats
        • GenericParserException
        • IniParser
        • JsonParser
        • ParserConfigException
        • ParserFileException
        • ParserLoadException
        • Placeholder
        • ResxParser
        • TemplateParserException
        • TemplateProcessingException
        • TextFileParseException
        • TextFormat
        • TextParseException
        • TlumachException
        • TomlParser
        • Translation
        • TranslationConfiguration
        • TranslationEntry
        • TranslationTree
        • TranslationTreeLeaf
        • TranslationTreeNode
        • TsvParser
        • Utils
      • BaseTranslationUnit
      • CultureChangedEventArgs
      • FileContentNeededEventArgs
      • TemplatedTranslationUnit
      • TranslationManager
      • TranslationUnit
      • TranslationValueEventArgs

    Class TranslationTreeNode

    Inheritance
    object
    TranslationTreeNode
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Tlumach.Base
    Assembly: Tlumach.Base.dll
    Syntax
    public class TranslationTreeNode

    Constructors

    TranslationTreeNode(string)

    Declaration
    public TranslationTreeNode(string name)
    Parameters
    Type Name Description
    string name

    Properties

    ChildNodes

    Declaration
    public Dictionary<string, TranslationTreeNode> ChildNodes { get; }
    Property Value
    Type Description
    Dictionary<string, TranslationTreeNode>

    Keys

    Contains the list of keys in the node. Each key is a string without parent node names in it.

    Declaration
    public Dictionary<string, TranslationTreeLeaf> Keys { get; }
    Property Value
    Type Description
    Dictionary<string, TranslationTreeLeaf>

    Name

    Contains the own name of the node (without parent names).

    Declaration
    public string Name { get; }
    Property Value
    Type Description
    string

    Methods

    FindNode(string)

    Declaration
    public TranslationTreeNode? FindNode(string name)
    Parameters
    Type Name Description
    string name
    Returns
    Type Description
    TranslationTreeNode

    MakeNode(string)

    Declaration
    public TranslationTreeNode? MakeNode(string name)
    Parameters
    Type Name Description
    string name
    Returns
    Type Description
    TranslationTreeNode
    In this article
    Back to top Generated by DocFX