SimulatedHttpRequest Constructor |
Namespace:
Enkoni.Framework.Testing
Assembly:
Enkoni.Framework.Testing (in Enkoni.Framework.Testing.dll) Version: 1.3.0.1
Syntaxpublic SimulatedHttpRequest(
string appVirtualDir,
string appPhysicalDir,
string page,
string query,
TextWriter output,
string host
)
Public Sub New (
appVirtualDir As String,
appPhysicalDir As String,
page As String,
query As String,
output As TextWriter,
host As String
)
public:
SimulatedHttpRequest(
String^ appVirtualDir,
String^ appPhysicalDir,
String^ page,
String^ query,
TextWriter^ output,
String^ host
)
new :
appVirtualDir : string *
appPhysicalDir : string *
page : string *
query : string *
output : TextWriter *
host : string -> SimulatedHttpRequest
Parameters
- appVirtualDir
- Type: SystemString
The virtual directory of the application. - appPhysicalDir
- Type: SystemString
The physical directory of the application. - page
- Type: SystemString
The name of the page that is requested. - query
- Type: SystemString
The query that is passed in the request. - output
- Type: System.IOTextWriter
The writer that must be used to write the output to. - host
- Type: SystemString
The host of the application.
See Also