The HtmlRewritePipe type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| HtmlRewritePipe |
Initializes a new instance of the HtmlRewritePipe class.
|
Methods
| Name | Description | |
|---|---|---|
| Equals | (Inherited from Object.) | |
| Finalize |
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.) | |
| GetElementType |
Gets the type of the element.
| |
| GetHashCode |
Serves as a hash function for a particular type.
(Inherited from Object.) | |
| GetType |
Gets the Type of the current instance.
(Inherited from Object.) | |
| MemberwiseClone |
Creates a shallow copy of the current Object.
(Inherited from Object.) | |
| OnHtmlInit |
Raises the [E:HtmlInit] event.
(Inherited from RewritePipe.) | |
| OnHtmlRewriteBegin |
Raises the [E:HtmlRewriteBegin] event.
(Inherited from RewritePipe.) | |
| OnHtmlRewriteEnd |
Raises the [E:HtmlRewriteEnd] event.
(Inherited from RewritePipe.) | |
| OnHtmlRewriteName |
Raises the [E:HtmlRewriteName] event.
(Inherited from RewritePipe.) | |
| OnHtmlRewriteUrl |
Raises the [E:RewriteUrlEvent] event.
(Inherited from RewritePipe.) | |
| OnHtmlRewriteValue |
Raises the [E:HtmlRewriteValue] event.
(Inherited from RewritePipe.) | |
| RewriteToEnd |
Rewrites the source stream to the end, sending the result to the writer.
| |
| ToString | (Inherited from Object.) |
Properties
| Name | Description | |
|---|---|---|
| CaseFolding |
Gets or sets the case folding to use when parsing source stream.
| |
| Encoding |
Gets the encoding.
(Inherited from RewritePipe.) | |
| Source |
Gets and sets the source Stream to use
|
Events
| Name | Description | |
|---|---|---|
| HtmlInit |
Raised once at the start, for every instantiation of us.
(Inherited from RewritePipe.) | |
| HtmlRewriteBegin |
Raised at the start of the HTML stream, before anything has been parsed or output.
Subscribers may take this chance to initialize, do other tings before the actual
parsing begins.
(Inherited from RewritePipe.) | |
| HtmlRewriteEnd |
Raised when all HTML has been parsed, just before flushing
(Inherited from RewritePipe.) | |
| HtmlRewriteName |
Raised when a an element or attribute name has been found. Subscribers may
change the name, or do other things as a result of this event. This event
together with HtmlRewriteValue is the most common event to subscribe to.
(Inherited from RewritePipe.) | |
| HtmlRewriteUrl |
Give subscribers a chance to modify an URL
(Inherited from RewritePipe.) | |
| HtmlRewriteValue |
Raised when a value has been found, such as an attribute value, but also when
the text contents of an element is found, whitespace or any other item that has
text. This event togheter with HtmlRewrietName is the most common event to
subscribe to.
Set IsHoldingOutput = true to suppress output of the value, modified or not.
(Inherited from RewritePipe.) |