Serializes this TextDocument to a JSON file
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Sub ToJsonFile( _
   ByVal  As String _
) 
             
        
            
            'Usage
 
Dim instance As TextDocument
Dim filePath As String
 
instance.ToJsonFile(filePath)
             
        
            
            public void ToJsonFile( 
   string 
)
             
        
            
            public: void ToJsonFile( 
   string* 
) 
             
        
            
            public:
void ToJsonFile( 
   String^ 
) 
             
        
             
        
            Parameters
- filePath
 
- The path of the file to which to serialize this TextDocument
 
            
             
            Exceptions
| Exception | Description | 
| System.Exception | Possibly by Serializer on invalid data, invalid data contract, or quota exceeded | 
 
            
            
            
            
            
            
            
            
            
            
            See Also