static com.google.gwt.xhr.client.XMLHttpRequest |
Xhr.get(elemental.html.Window window,
String url,
Xhr.Callback callback) |
Send a GET request to the url and dispatch updates to the
callback.
|
static com.google.gwt.xhr.client.XMLHttpRequest |
Xhr.get(String url,
Xhr.Callback callback) |
Send a GET request to the url and dispatch updates to the
callback.
|
static com.google.gwt.xhr.client.XMLHttpRequest |
Xhr.head(elemental.html.Window window,
String url,
Xhr.Callback callback) |
Send a HEAD request to the url and dispatch updates to the
callback.
|
static com.google.gwt.xhr.client.XMLHttpRequest |
Xhr.head(String url,
Xhr.Callback callback) |
Send a HEAD request to the url and dispatch updates to the
callback.
|
static com.google.gwt.xhr.client.XMLHttpRequest |
Xhr.post(elemental.html.Window window,
String url,
String requestData,
String contentType,
Xhr.Callback callback) |
Send a POST request to the url and dispatch updates to the
callback.
|
static com.google.gwt.xhr.client.XMLHttpRequest |
Xhr.post(String url,
String requestData,
String contentType,
Xhr.Callback callback) |
Send a POST request to the url and dispatch updates to the
callback.
|