The RewritePipe type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| RewritePipe | Initializes a new instance of the RewritePipe 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.) | |
| 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.
| |
| OnHtmlRewriteBegin |
Raises the [E:HtmlRewriteBegin] event.
| |
| OnHtmlRewriteEnd |
Raises the [E:HtmlRewriteEnd] event.
| |
| OnHtmlRewriteName |
Raises the [E:HtmlRewriteName] event.
| |
| OnHtmlRewriteUrl |
Raises the [E:RewriteUrlEvent] event.
| |
| OnHtmlRewriteValue |
Raises the [E:HtmlRewriteValue] event.
| |
| ToString | (Inherited from Object.) |
Properties
| Name | Description | |
|---|---|---|
| Encoding |
Gets the encoding.
|
Events
| Name | Description | |
|---|---|---|
| HtmlInit |
Raised once at the start, for every instantiation of us.
| |
| 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.
| |
| HtmlRewriteEnd |
Raised when all HTML has been parsed, just before flushing
| |
| 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.
| |
| HtmlRewriteUrl |
Give subscribers a chance to modify an URL
| |
| 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.
|