aboutsummaryrefslogtreecommitdiff
path: root/src/ProtocolBuffers/IMessage.cs
diff options
context:
space:
mode:
authorcsharptest <roger@csharptest.net>2011-08-05 20:40:14 -0500
committerrogerk <devnull@localhost>2011-08-05 20:40:14 -0500
commit0f3540e24b7b5cf66b59b97cb824fd5449fb77b4 (patch)
treef07ad11ac6c814df0f6b8091eae023cf5f5d5cc1 /src/ProtocolBuffers/IMessage.cs
parent304ff3a83823fdfce6e2eac40cc44e2b4b1fd3c3 (diff)
downloadprotobuf-0f3540e24b7b5cf66b59b97cb824fd5449fb77b4.tar.gz
protobuf-0f3540e24b7b5cf66b59b97cb824fd5449fb77b4.tar.bz2
protobuf-0f3540e24b7b5cf66b59b97cb824fd5449fb77b4.zip
Split off the Serialization namespace into a new assembly.
Diffstat (limited to 'src/ProtocolBuffers/IMessage.cs')
-rw-r--r--src/ProtocolBuffers/IMessage.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/ProtocolBuffers/IMessage.cs b/src/ProtocolBuffers/IMessage.cs
index 514c4bf8..c23bc3f7 100644
--- a/src/ProtocolBuffers/IMessage.cs
+++ b/src/ProtocolBuffers/IMessage.cs
@@ -185,24 +185,6 @@ namespace Google.ProtocolBuffers
new byte[] ToByteArray();
/// <summary>
- /// Serializes the message to JSON text. This is a trivial wrapper
- /// around Serialization.JsonFormatWriter.WriteMessage.
- /// </summary>
- string ToJson();
-
- /// <summary>
- /// Serializes the message to XML text. This is a trivial wrapper
- /// around Serialization.XmlFormatWriter.WriteMessage.
- /// </summary>
- string ToXml();
-
- /// <summary>
- /// Serializes the message to XML text using the element name provided.
- /// This is a trivial wrapper around Serialization.XmlFormatWriter.WriteMessage.
- /// </summary>
- string ToXml(string rootElementName);
-
- /// <summary>
/// Serializes the message and writes it to the given stream.
/// This is just a wrapper around WriteTo(ICodedOutputStream). This
/// does not flush or close the stream.