Constructor HTMLStripCharFilter
HTMLStripCharFilter(TextReader)
Creates a new HTMLStripCharFilter over the provided TextReader.
Declaration
public HTMLStripCharFilter(TextReader source)
Parameters
Type | Name | Description |
---|---|---|
System.IO.TextReader | source | System.IO.TextReader to strip html tags from. |
HTMLStripCharFilter(TextReader, ICollection<String>)
Creates a new HTMLStripCharFilter over the provided System.IO.TextReader with the specified start and end tags.
Declaration
public HTMLStripCharFilter(TextReader source, ICollection<string> escapedTags)
Parameters
Type | Name | Description |
---|---|---|
System.IO.TextReader | source | System.IO.TextReader to strip html tags from. |
System.Collections.Generic.ICollection<System.String> | escapedTags | Tags in this set (both start and end tags) will not be filtered out. |