HtmlExtractor Constructor
In This Topic
Construct a new HtmlExtractor instance
Syntax
'Declaration
Public Function New( _
ByVal As Stream _
)
'Usage
Dim originalHtmlContent As Stream
Dim instance As New HtmlExtractor(originalHtmlContent)
public HtmlExtractor(
Stream
)
public:
HtmlExtractor(
Stream^
)
Parameters
- originalHtmlContent
- The stream representing an html content to be used as template.
All the the place holders to be declared are declared relatively to this html content
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