<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > MSXML2 > MSXML2 Module Classes > ServerXMLHTTPRequest > ServerXMLHTTPRequest constructor |
Description
Instantiate a new ServerXMLHTTPRequest Object variable.
Syntax
'---Declare a new pConnection variable
Dim oHTTP As ServerXMLHTTPRequest
'---Instantiate it as new connection
oHTTP = New ServerXMLHTTPRequest
Alternative declaration in one single line using ... As New ...
'---Declare a new ServerXMLHTTPRequest variable and instantiate it
Dim oHTTP As New ServerXMLHTTPRequest
Returns
None.
Parameters
Name |
Type |
Optional |
Meaning |
Remarks
Restrictions
See also
Examples