Click or drag to resize
RequestReceivedEventArgs Class
The arguments passed for the RequestReceived event on IWebServer.
Inheritance Hierarchy
SystemObject
  SystemEventArgs
    VirtualRadar.Interface.WebServerRequestReceivedEventArgs

Namespace: VirtualRadar.Interface.WebServer
Assembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public class RequestReceivedEventArgs : EventArgs

The RequestReceivedEventArgs type exposes the following members.

Constructors
  NameDescription
Public methodRequestReceivedEventArgs
Creates a new object.
Top
Properties
  NameDescription
Public propertyClassification
Gets or sets a value indicating the classification that has been assigned to the response.
Public propertyClientAddress
Gets the address of the machine that is accessing the server. If the request is going through a reverse proxy then it is the address of the machine that accessed the reverse proxy.
Public propertyFile
Gets the file portion of PathAndFile or an empty string if there is no file portion.
Public propertyHandled
Gets or sets a value indicating that an event handler somewhere has dealt with the request and produced an appropriate response.
Public propertyIsAndroid
Gets a value indicating that the request probably came from an Android device.
Public propertyIsInternetRequest
Gets a value indicating whether the request originated from the Internet.
Public propertyIsIPad
Gets a value indicating that the request probably came from an iPad.
Public propertyIsIPhone
Gets a value indicating that the request probably came from an iPhone.
Public propertyIsIPod
Gets a value indicating that the request probably came from an iPod.
Public propertyPath
Gets the path portion of PathAndFile or '/' if the request is for a file in the root.
Public propertyPathAndFile
Gets the requested path from the root of the site.
Public propertyPathParts
Gets a list of the folders from the root to the file. An empty list indicates that the file is in root.
Public propertyProxyAddress
Gets the address of the reverse proxy that forwarded this request to the server.
Public propertyQueryString
Gets the query string portions sent with the request.
Public propertyRequest
Gets details of the page requested by the user.
Public propertyResponse
Gets details of the response to send back to the user.
Public propertyRoot
Gets the root of the website.
Public propertyUniqueId
Gets a value that uniquely identifies the request.
Public propertyUserName
Gets or sets the user name used to authenticate the request, if any.
Public propertyWebSite
Gets the website address, as seen by the browser.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also