ToString Method
Overloads
| ToString() | 
             Creates a string representation of the underlying json structure.
Equivalent to   | 
        
      
    |
| ToString(Formatting) | 
             Creates a string representation of the underlying json structure.  | 
        
      
    
ToString()
Creates a string representation of the underlying json structure.
Equivalent to ToString(Formatting.Indented)
Declaration
      public override string ToString()
    
  Returns
| Type | Description | 
|---|---|
| System.String | 
           The string representation of the underlying json structure.  | 
      
Overrides
    System.Object.ToString()
  
  
  
  ToString(Formatting)
Creates a string representation of the underlying json structure.
Declaration
      public string ToString(Formatting formatting)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| Newtonsoft.Json.Formatting | formatting | 
           Formatting of the string.  | 
      
Returns
| Type | Description | 
|---|---|
| System.String | 
           The string representation of the underlying json structure.  |