 | CHTTPPost Method |
Post data to the server.
Namespace:
Geosoft.Desktop.GXNetX
Assembly:
geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void Post(
string cl,
string method,
CBF bf
)
public void Post(
string cl,
string method,
CBF bf
)
Public Sub Post (
cl As String,
method As String,
bf As CBF
)
Public Sub Post (
cl As String,
method As String,
bf As CBF
)
public:
void Post(
String^ cl,
String^ method,
CBF^ bf
)
public:
void Post(
String^ cl,
String^ method,
CBF^ bf
)
member Post :
cl : string *
method : string *
bf : CBF -> unit
member Post :
cl : string *
method : string *
bf : CBF -> unit
Parameters
- cl
- Type: SystemString
Http path (file or an ISAPI DLL) - method
- Type: SystemString
Http search string, no spaces - bf
- Type: GeoEngine.Core.GXNetXCBF
Data to post
Remarks
Full contents of the BF are sent as an HTTP POST message.
request URL will be:
http://server/path?search
See Also