From f95b6081cba084d1b067acea99c0effa2b3bf42c Mon Sep 17 00:00:00 2001
From: MW
Date: Thu, 24 May 2007 12:35:32 +0000
Subject: Renamed the new Directories. (removed the "-Source" from the end of
them)
---
Common-Source/XmlRpcCS/XmlRpcXmlTokens.cs | 76 -------------------------------
1 file changed, 76 deletions(-)
delete mode 100644 Common-Source/XmlRpcCS/XmlRpcXmlTokens.cs
(limited to 'Common-Source/XmlRpcCS/XmlRpcXmlTokens.cs')
diff --git a/Common-Source/XmlRpcCS/XmlRpcXmlTokens.cs b/Common-Source/XmlRpcCS/XmlRpcXmlTokens.cs
deleted file mode 100644
index 50788bd..0000000
--- a/Common-Source/XmlRpcCS/XmlRpcXmlTokens.cs
+++ /dev/null
@@ -1,76 +0,0 @@
-namespace Nwc.XmlRpc
-{
- using System;
-
- /// Class collecting String tokens that are part of XML-RPC files.
- public class XmlRpcXmlTokens
- {
- /// C# formatting string to describe an ISO 8601 date.
- public const String ISO_DATETIME = "yyyyMMdd\\THH\\:mm\\:ss";
- /// Base64 field indicator.
- /// Corresponds to the <base64> tag.
- public const String BASE64 = "base64";
- /// String field indicator.
- /// Corresponds to the <string> tag.
- public const String STRING = "string";
- /// Integer field integer.
- /// Corresponds to the <i4> tag.
- public const String INT = "i4";
- /// Alternate integer field indicator.
- /// Corresponds to the <int> tag.
- public const String ALT_INT = "int";
- /// Date field indicator.
- /// Corresponds to the <dateTime.iso8601> tag.
- public const String DATETIME = "dateTime.iso8601";
- /// Boolean field indicator.
- /// Corresponds to the <boolean> tag.
- public const String BOOLEAN = "boolean";
- /// Value token.
- /// Corresponds to the <value> tag.
- public const String VALUE = "value";
- /// Name token.
- /// Corresponds to the <name> tag.
- public const String NAME = "name";
- /// Array field indicator..
- /// Corresponds to the <array> tag.
- public const String ARRAY = "array";
- /// Data token.
- /// Corresponds to the <data> tag.
- public const String DATA = "data";
- /// Member token.
- /// Corresponds to the <member> tag.
- public const String MEMBER = "member";
- /// Stuct field indicator.
- /// Corresponds to the <struct> tag.
- public const String STRUCT = "struct";
- /// Double field indicator.
- /// Corresponds to the <double> tag.
- public const String DOUBLE = "double";
- /// Param token.
- /// Corresponds to the <param> tag.
- public const String PARAM = "param";
- /// Params token.
- /// Corresponds to the <params> tag.
- public const String PARAMS = "params";
- /// MethodCall token.
- /// Corresponds to the <methodCall> tag.
- public const String METHOD_CALL = "methodCall";
- /// MethodName token.
- /// Corresponds to the <methodName> tag.
- public const String METHOD_NAME = "methodName";
- /// MethodResponse token
- /// Corresponds to the <methodResponse> tag.
- public const String METHOD_RESPONSE = "methodResponse";
- /// Fault response token.
- /// Corresponds to the <fault> tag.
- public const String FAULT = "fault";
- /// FaultCode token.
- /// Corresponds to the <faultCode> tag.
- public const String FAULT_CODE = "faultCode";
- /// FaultString token.
- /// Corresponds to the <faultString> tag.
- public const String FAULT_STRING = "faultString";
- }
-}
-
-
--
cgit v1.1