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 As Stream _
)
'Usage
Dim instance As HtmlExtractor
Dim exportStream As Stream
instance.Export(exportStream)
public void Export(
Stream
)
public:
void Export(
Stream^
)
Parameters
- exportStream
- The stream to where the xml specification is written.
Exceptions
Exception | Description |
System.ArgumentException | The exception that is thrown when one of the arguments provided to a method is not valid. |
System.ArgumentNullException | 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