C# Class BzReader.UrlRequestedEventArgs

The class which used to pass information about the requested url to web browser
Inheritance: System.EventArgs
Show file Open project: synhershko/BzReader Class Usage Examples

Public Methods

Method Description
RedirectUrl ( int port ) : string

The url to the redirected topic

TeXUrl ( string equation, int port ) : string

The TeX equation URL

Url ( string indexName, string topicName, int port ) : string

The URL that is/was used to fetch this document

UrlRequestedEventArgs ( string aUrl ) : System

Initializes a new instance of the UrlRequestedEventArgs class.

Method Details

RedirectUrl() public method

The url to the redirected topic
public RedirectUrl ( int port ) : string
port int
return string

TeXUrl() public static method

The TeX equation URL
public static TeXUrl ( string equation, int port ) : string
equation string Equation text
port int Port the server is listening on
return string

Url() public static method

The URL that is/was used to fetch this document
public static Url ( string indexName, string topicName, int port ) : string
indexName string
topicName string
port int
return string

UrlRequestedEventArgs() public method

Initializes a new instance of the UrlRequestedEventArgs class.
public UrlRequestedEventArgs ( string aUrl ) : System
aUrl string A URL which was request by web browser.
return System