Click or drag to resize

UrlRequestEventArgs Class

Contains I/O data objects for the event
Inheritance Hierarchy
SystemObject
  SystemEventArgs
    Advanced_Combat_TrackerUrlRequestEventArgs

Namespace:  Advanced_Combat_Tracker
Assembly:  Advanced Combat Tracker (in Advanced Combat Tracker.exe) Version: 3.7.0.280
Syntax
C#
public class UrlRequestEventArgs : EventArgs

The UrlRequestEventArgs type exposes the following members.

Constructors
  NameDescription
Public methodUrlRequestEventArgs
I/O data for the URL request
Top
Properties
  NameDescription
Public propertyReturnBinary
The binary data for the handled URL, if applicable.
Public propertyReturnContentType
The Content-Type header.
Public propertyReturnIsText
If a text or binary writer should be used to send data
Public propertyReturnText
The text data for the handled URL, if applicable.
Public propertyUrlHandled
If a set data method has been used
Top
Methods
  NameDescription
Public methodSetBinaryData
Respond to the URL request with binary data (images, archives, etc)
Public methodSetTextData
Respond to the URL request with text data (HTML/CSS/JavaScript etc)
Top
Fields
  NameDescription
Public fieldheaders
The HTTP headers
Public fieldurl
The URL fragment requested by the client
Public fieldurlVars
The variables passed from the URL (Ex: http://host/url?var1=one&var2=two) These values have not been decoded in any way
Top
See Also