TextParser Library | ComponentOne
C1.TextParser Namespace / HtmlExtractor Class / Export Method
The stream to where the xml specification is written.



In This Topic
    Export Method
    In This Topic
    Serialize this HtmlExtractor to a Stream. The serialization is expressed in xml and contains all the specification about the template used by this html extractor.
    Syntax
    'Declaration
     
    
    Public Sub Export( _
       ByVal exportStream As Stream _
    ) 
    'Usage
     
    
    Dim instance As HtmlExtractor
    Dim exportStream As Stream
     
    instance.Export(exportStream)
    public void Export( 
       Stream exportStream
    )
    public:
    void Export( 
       Stream^ exportStream
    ) 

    Parameters

    exportStream
    The stream to where the xml specification is written.
    Exceptions
    ExceptionDescription
    The exception that is thrown when one of the arguments provided to a method is not valid.
    The exception that is thrown when a null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument.
    See Also