New (HttpRequest constructor): Difference between revisions
Jump to navigation
Jump to search
m (→Syntax terms) |
mNo edit summary |
||
Line 15: | Line 15: | ||
<li>As described in [[Object variables#Using New or other Constructors|"Using New or other Constructors"]], <var>New</var> can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is <var>Null</var>:<p class="code">%httpRequest = new | <li>As described in [[Object variables#Using New or other Constructors|"Using New or other Constructors"]], <var>New</var> can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is <var>Null</var>:<p class="code">%httpRequest = new | ||
%httpRequest = %( | %httpRequest = %(HttpRequest):new | ||
%httpRequest = %httpRequest:new | %httpRequest = %httpRequest:new |
Revision as of 19:21, 27 July 2011
Create a new HttpRequest object (HttpRequest class)
The HttpRequest constructor (run automatically when New is issued) takes no arguments and sets the request object default values. For more information about HttpRequest object defaults, see the individual method descriptions.
Syntax
%httpRequest = [%(HttpRequest):]New
Syntax terms
%httpRequest | A declared HttpRequest object to contain the new HttpRequest object instance. |
---|---|
%(HttpRequest) | The optional class name in parentheses denotes a Constructor. See "Usage notes", below, for more information about invoking an HttpRequest Constructor. |
Usage notes
- As described in "Using New or other Constructors", New can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is Null:
%httpRequest = new %httpRequest = %(HttpRequest):new %httpRequest = %httpRequest:new