|  | HoconTokenizer Class | 
 Inheritance Hierarchy
Inheritance HierarchyNamespace: Akka.Configuration.Hocon
 Syntax
SyntaxThe HoconTokenizer type exposes the following members.
 Constructors
Constructors| Name | Description | |
|---|---|---|
|  | HoconTokenizer | 
            Initializes a new instance of the HoconTokenizer class.
             | 
 Properties
Properties| Name | Description | |
|---|---|---|
|  | EoF | 
            A value indicating whether the tokenizer has reached the end of the string.
            (Inherited from Tokenizer.) | 
 Methods
Methods| Name | Description | |
|---|---|---|
|  | Equals | Determines whether the specified object is equal to the current object.(Inherited from Object.) | 
|  | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) | 
|  | GetHashCode | Serves as the default hash function. (Inherited from Object.) | 
|  | GetType | Gets the Type of the current instance.(Inherited from Object.) | 
|  | IsArrayEnd | 
            Determines whether the current token matches an ArrayEnd token.
             | 
|  | IsArrayStart | 
            Determines whether the current token matches an ArrayStart token.
             | 
|  | IsAssignment | 
            Determines whether the current token matches an Assign token.
             | 
|  | IsComma | 
            Determines whether the current token matches an Comma token.
             | 
|  | IsDot | 
            Determines whether the current token matches an Dot token.
             | 
|  | IsEndOfObject | 
            Determines whether the current token matches an ObjectEnd token.
             | 
|  | IsInclude | 
            Determines whether the current token is the start of an include directive.
             | 
|  | IsObjectStart | 
            Determines whether the current token matches an ObjectStart token.
             | 
|  | IsSpaceOrTab | 
            Determines whether the current token is a space or a tab.
             | 
|  | IsStartOfComment | 
            Determines whether the current token is the start of a comment.
             | 
|  | IsStartOfQuotedText | 
            Determines whether the current token matches the start of a quoted string.
             | 
|  | IsStartOfTripleQuotedText | 
            Determines whether the current token matches the start of a triple quoted string.
             | 
|  | IsStartSimpleValue | 
            Determines whether the current token is the start of an unquoted string literal.
             | 
|  | IsSubstitutionStart | 
            Determines whether the current token is the start of a substitution.
             | 
|  | IsUnquotedKey | 
            Determines whether the current token is an unquoted key.
             | 
|  | IsUnquotedKeyStart | 
            Determines whether the current token is the start of an unquoted key.
             | 
|  | IsWhitespace | 
            Determines whether the current token is whitespace.
             | 
|  | IsWhitespaceOrComment | 
            Determines whether the current token is whitespace or a comment.
             | 
|  | Matches(String) | 
            Determines whether the given pattern matches the value at the current
            position of the tokenizer.
            (Inherited from Tokenizer.) | 
|  | Matches(String) | 
            Determines whether any of the given patterns match the value at the current
            position of the tokenizer.
            (Inherited from Tokenizer.) | 
|  | MemberwiseClone | Creates a shallow copy of the current Object.(Inherited from Object.) | 
|  | Peek | 
            Retrieves the next character in the tokenizer without advancing its position.
            (Inherited from Tokenizer.) | 
|  | Pop | 
            Removes an index from the tokenizer's bookkeeping stack. 
            (Inherited from Tokenizer.) | 
|  | PullArrayEnd | 
            Retrieves a ArrayEnd token from the tokenizer's current position.
             | 
|  | PullArrayStart | 
            Retrieves a ArrayStart token from the tokenizer's current position.
             | 
|  | PullAssignment | 
            Retrieves a Assign token from the tokenizer's current position.
             | 
|  | PullComma | 
            Retrieves a Comma token from the tokenizer's current position.
             | 
|  | PullComment | 
            Retrieves a Comment token from the tokenizer's current position.
             | 
|  | PullDot | 
            Retrieves a Dot token from the tokenizer's current position.
             | 
|  | PullEndOfObject | 
            Retrieves a ObjectEnd token from the tokenizer's current position.
             | 
|  | PullInclude | 
            TBD
             | 
|  | PullNext | 
            Retrieves the next token from the string.
             | 
|  | PullQuotedKey | 
            Retrieves a quoted Key token from the tokenizer's current position.
             | 
|  | PullQuotedText | 
            Retrieves a quoted LiteralValue token from the tokenizer's current position.
             | 
|  | PullRestOfLine | 
            Retrieves the current line from where the current token
            is located in the string.
             | 
|  | PullSimpleValue | 
            Retrieves the current token as a string literal token.
             | 
|  | PullSpaceOrTab | 
            Retrieves the current token, including whitespace and tabs, as a string literal token.
             | 
|  | PullStartOfObject | 
            Retrieves a ObjectStart token from the tokenizer's current position.
             | 
|  | PullSubstitution | 
            Retrieves a Substitute token from the tokenizer's current position.
             | 
|  | PullTripleQuotedText | 
            Retrieves a triple quoted LiteralValue token from the tokenizer's current position.
             | 
|  | PullUnquotedKey | 
            Retrieves an unquoted Key token from the tokenizer's current position.
             | 
|  | PullValue | 
            Retrieves a value token from the tokenizer's current position.
             | 
|  | PullWhitespace | 
            Advances the tokenizer to the next non-whitespace character.
            (Inherited from Tokenizer.) | 
|  | PullWhitespaceAndComments | 
            Advances the tokenizer to the next non-whitespace, non-comment token.
             | 
|  | Push | 
            Adds the current index to the tokenizer's bookkeeping stack.
            (Inherited from Tokenizer.) | 
|  | Take | 
            Retrieves the next character in the tokenizer.
            (Inherited from Tokenizer.) | 
|  | Take(Int32) | 
            Retrieves a string of the given length from the current position of the tokenizer.
            (Inherited from Tokenizer.) | 
|  | ToString | Returns a string that represents the current object.(Inherited from Object.) | 
 Extension Methods
Extension Methods| Name | Description | |
|---|---|---|
|  | AsInstanceOfT | 
            TBD
            (Defined by Extensions.) | 
|  | Match | Overloaded. 
            Matches the specified target.
            (Defined by PatternMatch.) | 
|  | MatchT | Overloaded. 
            Matches the specified target and return a result of target processing.
            (Defined by PatternMatch.) | 
 See Also
See Also