From 3376b82501000692d6dac24b051af738cdaf2737 Mon Sep 17 00:00:00 2001
From: MW
Date: Thu, 24 May 2007 12:16:50 +0000
Subject: Some more code refactoring, plus a restructuring of the directories
so that the Grid servers can be a separate solution to the region server.
---
XmlRpcCS/XmlRpcRequestSerializer.cs | 51 -------------------------------------
1 file changed, 51 deletions(-)
delete mode 100644 XmlRpcCS/XmlRpcRequestSerializer.cs
(limited to 'XmlRpcCS/XmlRpcRequestSerializer.cs')
diff --git a/XmlRpcCS/XmlRpcRequestSerializer.cs b/XmlRpcCS/XmlRpcRequestSerializer.cs
deleted file mode 100644
index 8099bdb..0000000
--- a/XmlRpcCS/XmlRpcRequestSerializer.cs
+++ /dev/null
@@ -1,51 +0,0 @@
-namespace Nwc.XmlRpc
-{
- using System;
- using System.Collections;
- using System.Xml;
- using System.IO;
-
- /// Class responsible for serializing an XML-RPC request.
- /// This class handles the request envelope, depending on XmlRpcSerializer
- /// to serialize the payload.
- ///
- public class XmlRpcRequestSerializer : XmlRpcSerializer
- {
- static private XmlRpcRequestSerializer _singleton;
- /// A static singleton instance of this deserializer.
- static public XmlRpcRequestSerializer Singleton
- {
- get
- {
- if (_singleton == null)
- _singleton = new XmlRpcRequestSerializer();
-
- return _singleton;
- }
- }
-
- /// Serialize the XmlRpcRequest to the output stream.
- /// An XmlTextWriter stream to write data to.
- /// An XmlRpcRequest to serialize.
- ///
- override public void Serialize(XmlTextWriter output, Object obj)
- {
- XmlRpcRequest request = (XmlRpcRequest)obj;
- output.WriteStartDocument();
- output.WriteStartElement(METHOD_CALL);
- output.WriteElementString(METHOD_NAME, request.MethodName);
- output.WriteStartElement(PARAMS);
- foreach (Object param in request.Params)
- {
- output.WriteStartElement(PARAM);
- output.WriteStartElement(VALUE);
- SerializeObject(output, param);
- output.WriteEndElement();
- output.WriteEndElement();
- }
-
- output.WriteEndElement();
- output.WriteEndElement();
- }
- }
-}
--
cgit v1.1