Static
Optional
disableDisable certificate verification across all components that use HTTP. It can be used to bypass self-signed certificate. This property must be assigned when the application is started and cannot be changed dynamically.
= false]
5.1.1
Static
iosOptional
sslOptional
responseURLRest
...args: any[]Rest
...args: any[]Rest
...args: any[]Rest
...args: any[]Rest
...args: any[]Rest
...args: any[]Rest
...args: any[]Rest
...args: any[]Creates an event emitter instance to listen for the actions
Call the function to remove the event
Gets as any arguments as it needs
Creates an event emitter instance to listen for the actions
Call the function to remove the event
Gets as any arguments as it needs
Removes the specified event and invokes the callback after it is removed
Optional
callback: EventListenerCallbackTriggers the event manually.
Rest
...args: any[]Arguments that needs to be passed down
Adds the listener function to the beginning of the listeners array for the event named eventName. No checks are made to see if the listener has already been added. Multiple calls passing the same combination of eventName and listener will result in the listener being added, and called, multiple times.
Adds a one-time listener function for the event named eventName to the beginning of the listeners array. The next time eventName is triggered, this listener is removed, and then invoked.
Sends the request. If the request is asynchronous (which is the default), this method returns as soon as the request is sent.
https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/send
Optional
data: string | FormDataSets the value of an HTTP request header. You must call setRequestHeader() after open(), but before send().
https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/setRequestHeader
Generated using TypeDoc
See
https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest