-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathTYPES.html
51 lines (51 loc) · 1.09 KB
/
TYPES.html
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
<html>
<head>
<title>Types</title>
</head>
<body>
<h1>Types</h1>
<p>The standards XML-RPC types, for the purposes of this assembly, are
associated with the following C# types. These classes are what the serializers
expect and what the deserializers generate.</p>
<div align="left">
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="50%">
<tr>
<td align="center"><b>XML-RPC</b></td>
<td align="center"><b>C#</b></td>
</tr>
<tr>
<td>array</td>
<td>IList</td>
</tr>
<tr>
<td>base64</td>
<td>byte[]</td>
</tr>
<tr>
<td>boolean</td>
<td>Boolean</td>
</tr>
<tr>
<td>dateTime.iso8601</td>
<td>DateTime</td>
</tr>
<tr>
<td>double</td>
<td>Double</td>
</tr>
<tr>
<td>i4/int</td>
<td>Int32</td>
</tr>
<tr>
<td>string</td>
<td>String</td>
</tr>
<tr>
<td>struct</td>
<td>IDictionary</td>
</tr>
</table>
</div>
</body>
</html>