forked from paulvi/eclipse-node-ide
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathAJAX.xml
More file actions
65 lines (58 loc) · 2.53 KB
/
AJAX.xml
File metadata and controls
65 lines (58 loc) · 2.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<Library>
<class name="window" createStaticVar="false">
<method name="ActiveXObject" returnType="XMLHttpRequest">
<param name="sName" type="String"/>
</method>
</class>
<class name="XMLHttpRequest" paramPolicyMandatory="true">
<method name="__constructor__">
<param name="options" type="Object" rest="true" optional="true"/>
</method>
<static>
<property name="UNSENT" value="0" type="int" readOnly="true"/>
<property name="OPENED" value="1" type="int" readOnly="true"/>
<property name="HEADERS_RECEIVED" value="2" type="int" readOnly="true"/>
<property name="LOADING" type="int" value="3" readOnly="true"/>
<property name="DONE" type="int" value="4" readOnly="true"/>
</static>
<method name="abort"/>
<method name="getAllResponseHeaders" returnType="String?"/>
<method name="getResponseHeader" returnType="String?">
<param name="headerName" optional="false" type="String"/>
</method>
<method name="overrideMimeType" since="5">
<param name="mimeType" type="String"/>
</method>
<method name="open">
<param name="method" type="String"/>
<param name="url" type="String"/>
<param name="async" type="Boolean" optional="true"/>
<param name="user" type="String" optional="true"/>
<param name="password" type="String" optional="true"/>
</method>
<method name="send">
<param name="data" type="String|ArrayBuffer|Blob|Document|FormData" optional="true"/>
</method>
<method name="setRequestHeader">
<param name="header" type="String"/>
<param name="value" type="String"/>
</method>
<property name="onreadystatechange" type="Function?" writeOnly="true"/>
<property name="readyState" type="int"/>
<property name="responseText" type="String?" readOnly="true"/>
<property name="statusText" type="String" readOnly="true"/>
<property name="status" type="int" readOnly="true"/>
<property name="responseXML" type="Document"/>
<property name="responseType" type="String" since="5"/>
<property name="response" type="Object?" since="5"/>
<property name="withCredentials" type="Boolean" since="5"/>
<property name="upload" type="XMLHttpRequestEventTarget" readOnly="true" since="5"/>
</class>
<class name="XMLHttpRequestException">
<static>
<property name="NETWORK_ERR" value="101" type="int" readOnly="true"/>
<property name="ABORT_ERR" value="102" type="int" readOnly="true"/>
</static>
<property name="code" type="int" readOnly="true"/>
</class>
</Library>