|  | TokenizerTake Method (Int32) | 
 
            Retrieves a string of the given length from the current position of the tokenizer.
            
 
    Namespace: 
   Akka.Configuration.Hocon
    Assembly:
   Akka (in Akka.dll) Version: 1.2.3.129 (1.2.3.129)
 Syntax
Syntaxpublic string Take(
	int length
)
member Take : 
        length : int -> string 
Parameters
- length
- Type: SystemInt32
 The length of the string to return.
Return Value
Type: 
String
            The string of the given length. If the length exceeds where the
            current index is located, then null is returned.
            
 See Also
See Also