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/XmlRpcResponseSerializer.cs | 57 ------------------------------------
1 file changed, 57 deletions(-)
delete mode 100644 XmlRpcCS/XmlRpcResponseSerializer.cs
(limited to 'XmlRpcCS/XmlRpcResponseSerializer.cs')
diff --git a/XmlRpcCS/XmlRpcResponseSerializer.cs b/XmlRpcCS/XmlRpcResponseSerializer.cs
deleted file mode 100644
index 72ca568..0000000
--- a/XmlRpcCS/XmlRpcResponseSerializer.cs
+++ /dev/null
@@ -1,57 +0,0 @@
-namespace Nwc.XmlRpc
-{
- using System;
- using System.Collections;
- using System.Xml;
-
- /// Class responsible for serializing an XML-RPC response.
- /// This class handles the response envelope, depending on XmlRpcSerializer
- /// to serialize the payload.
- ///
- public class XmlRpcResponseSerializer : XmlRpcSerializer
- {
- static private XmlRpcResponseSerializer _singleton;
- /// A static singleton instance of this deserializer.
- static public XmlRpcResponseSerializer Singleton
- {
- get
- {
- if (_singleton == null)
- _singleton = new XmlRpcResponseSerializer();
-
- return _singleton;
- }
- }
-
- /// Serialize the XmlRpcResponse to the output stream.
- /// An XmlTextWriter stream to write data to.
- /// An Object to serialize.
- ///
- override public void Serialize(XmlTextWriter output, Object obj)
- {
- XmlRpcResponse response = (XmlRpcResponse)obj;
-
- output.WriteStartDocument();
- output.WriteStartElement(METHOD_RESPONSE);
-
- if (response.IsFault)
- output.WriteStartElement(FAULT);
- else
- {
- output.WriteStartElement(PARAMS);
- output.WriteStartElement(PARAM);
- }
-
- output.WriteStartElement(VALUE);
-
- SerializeObject(output, response.Value);
-
- output.WriteEndElement();
-
- output.WriteEndElement();
- if (!response.IsFault)
- output.WriteEndElement();
- output.WriteEndElement();
- }
- }
-}
--
cgit v1.1