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 TextParseException

    Inheritance
    object
    Exception
    TlumachException
    GenericParserException
    TextParseException
    TextFileParseException
    Implements
    ISerializable
    Inherited Members
    Exception.GetBaseException()
    Exception.GetType()
    Exception.ToString()
    Exception.Data
    Exception.HelpLink
    Exception.HResult
    Exception.InnerException
    Exception.Message
    Exception.Source
    Exception.StackTrace
    Exception.TargetSite
    Exception.SerializeObjectState
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: Tlumach.Base
    Assembly: Tlumach.Base.dll
    Syntax
    public class TextParseException : GenericParserException, ISerializable

    Constructors

    TextParseException(string, int, int, int, int)

    Declaration
    public TextParseException(string message, int startPosition, int endPosition, int lineNumber, int columnNumber)
    Parameters
    Type Name Description
    string message
    int startPosition
    int endPosition
    int lineNumber
    int columnNumber

    TextParseException(string, int, int, int, int, Exception)

    Declaration
    public TextParseException(string message, int startPosition, int endPosition, int lineNumber, int columnNumber, Exception innerException)
    Parameters
    Type Name Description
    string message
    int startPosition
    int endPosition
    int lineNumber
    int columnNumber
    Exception innerException

    Properties

    ColumnNumber

    The column number in which the error occurred.

    Declaration
    public int ColumnNumber { get; }
    Property Value
    Type Description
    int

    EndPosition

    The ending position of the text block that could not be parsed.

    Declaration
    public int EndPosition { get; }
    Property Value
    Type Description
    int

    LineNumber

    The line number in which the error occurred.

    Declaration
    public int LineNumber { get; }
    Property Value
    Type Description
    int

    StartPosition

    The starting position of the text block that could not be parsed.

    Declaration
    public int StartPosition { get; }
    Property Value
    Type Description
    int

    Implements

    ISerializable
    In this article
    Back to top Generated by DocFX