 | CHTTP.Get Method |
Get data from a server.
Namespace:
Geosoft.Desktop.GXNetX
Assembly:
geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void Get(
string cl,
string method,
CBF bf,
CBF ret_bf
)
public void Get(
string cl,
string method,
CBF bf,
CBF ret_bf
)
Public Sub Get (
cl As String,
method As String,
bf As CBF,
ret_bf As CBF
)
Public Sub Get (
cl As String,
method As String,
bf As CBF,
ret_bf As CBF
)
public:
void Get(
String^ cl,
String^ method,
CBF^ bf,
CBF^ ret_bf
)
public:
void Get(
String^ cl,
String^ method,
CBF^ bf,
CBF^ ret_bf
)
member Get :
cl : string *
method : string *
bf : CBF *
ret_bf : CBF -> unit
member Get :
cl : string *
method : string *
bf : CBF *
ret_bf : CBF -> unit
Parameters
- cl
- Type: System.String
Http path (file or an ISAPI DLL), no spaces - method
- Type: System.String
Http search string, no spaces - bf
- Type: GeoEngine.Core.GXNetX.CBF
Data to send - ret_bf
- Type: GeoEngine.Core.GXNetX.CBF
Data returned
Remarks
Full contents of the BF are sent in an HTTP GET message.
BF pointer is returned to location before the call.
request URL will be:
http://server/path?search
See Also