diff options
Diffstat (limited to 'Common/XmlRpcCS/XmlRpcXmlTokens.cs')
-rw-r--r-- | Common/XmlRpcCS/XmlRpcXmlTokens.cs | 103 |
1 files changed, 0 insertions, 103 deletions
diff --git a/Common/XmlRpcCS/XmlRpcXmlTokens.cs b/Common/XmlRpcCS/XmlRpcXmlTokens.cs deleted file mode 100644 index 27447bb..0000000 --- a/Common/XmlRpcCS/XmlRpcXmlTokens.cs +++ /dev/null | |||
@@ -1,103 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://www.openmetaverse.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | * | ||
27 | */ | ||
28 | namespace Nwc.XmlRpc | ||
29 | { | ||
30 | using System; | ||
31 | |||
32 | /// <summary>Class collecting <c>String</c> tokens that are part of XML-RPC files.</summary> | ||
33 | public class XmlRpcXmlTokens | ||
34 | { | ||
35 | /// <summary>C# formatting string to describe an ISO 8601 date.</summary> | ||
36 | public const String ISO_DATETIME = "yyyyMMdd\\THH\\:mm\\:ss"; | ||
37 | /// <summary>Base64 field indicator.</summary> | ||
38 | /// <remarks>Corresponds to the <base64> tag.</remarks> | ||
39 | public const String BASE64 = "base64"; | ||
40 | /// <summary>String field indicator.</summary> | ||
41 | /// <remarks>Corresponds to the <string> tag.</remarks> | ||
42 | public const String STRING = "string"; | ||
43 | /// <summary>Integer field integer.</summary> | ||
44 | /// <remarks>Corresponds to the <i4> tag.</remarks> | ||
45 | public const String INT = "i4"; | ||
46 | /// <summary>Alternate integer field indicator.</summary> | ||
47 | /// <remarks>Corresponds to the <int> tag.</remarks> | ||
48 | public const String ALT_INT = "int"; | ||
49 | /// <summary>Date field indicator.</summary> | ||
50 | /// <remarks>Corresponds to the <dateTime.iso8601> tag.</remarks> | ||
51 | public const String DATETIME = "dateTime.iso8601"; | ||
52 | /// <summary>Boolean field indicator.</summary> | ||
53 | /// <remarks>Corresponds to the <boolean> tag.</remarks> | ||
54 | public const String BOOLEAN = "boolean"; | ||
55 | /// <summary>Value token.</summary> | ||
56 | /// <remarks>Corresponds to the <value> tag.</remarks> | ||
57 | public const String VALUE = "value"; | ||
58 | /// <summary>Name token.</summary> | ||
59 | /// <remarks>Corresponds to the <name> tag.</remarks> | ||
60 | public const String NAME = "name"; | ||
61 | /// <summary>Array field indicator..</summary> | ||
62 | /// <remarks>Corresponds to the <array> tag.</remarks> | ||
63 | public const String ARRAY = "array"; | ||
64 | /// <summary>Data token.</summary> | ||
65 | /// <remarks>Corresponds to the <data> tag.</remarks> | ||
66 | public const String DATA = "data"; | ||
67 | /// <summary>Member token.</summary> | ||
68 | /// <remarks>Corresponds to the <member> tag.</remarks> | ||
69 | public const String MEMBER = "member"; | ||
70 | /// <summary>Stuct field indicator.</summary> | ||
71 | /// <remarks>Corresponds to the <struct> tag.</remarks> | ||
72 | public const String STRUCT = "struct"; | ||
73 | /// <summary>Double field indicator.</summary> | ||
74 | /// <remarks>Corresponds to the <double> tag.</remarks> | ||
75 | public const String DOUBLE = "double"; | ||
76 | /// <summary>Param token.</summary> | ||
77 | /// <remarks>Corresponds to the <param> tag.</remarks> | ||
78 | public const String PARAM = "param"; | ||
79 | /// <summary>Params token.</summary> | ||
80 | /// <remarks>Corresponds to the <params> tag.</remarks> | ||
81 | public const String PARAMS = "params"; | ||
82 | /// <summary>MethodCall token.</summary> | ||
83 | /// <remarks>Corresponds to the <methodCall> tag.</remarks> | ||
84 | public const String METHOD_CALL = "methodCall"; | ||
85 | /// <summary>MethodName token.</summary> | ||
86 | /// <remarks>Corresponds to the <methodName> tag.</remarks> | ||
87 | public const String METHOD_NAME = "methodName"; | ||
88 | /// <summary>MethodResponse token</summary> | ||
89 | /// <remarks>Corresponds to the <methodResponse> tag.</remarks> | ||
90 | public const String METHOD_RESPONSE = "methodResponse"; | ||
91 | /// <summary>Fault response token.</summary> | ||
92 | /// <remarks>Corresponds to the <fault> tag.</remarks> | ||
93 | public const String FAULT = "fault"; | ||
94 | /// <summary>FaultCode token.</summary> | ||
95 | /// <remarks>Corresponds to the <faultCode> tag.</remarks> | ||
96 | public const String FAULT_CODE = "faultCode"; | ||
97 | /// <summary>FaultString token.</summary> | ||
98 | /// <remarks>Corresponds to the <faultString> tag.</remarks> | ||
99 | public const String FAULT_STRING = "faultString"; | ||
100 | } | ||
101 | } | ||
102 | |||
103 | |||