aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/ProtocolBuffers.Serialization/XmlReaderOptions.cs
diff options
context:
space:
mode:
authorJon Skeet <skeet@pobox.com>2015-06-17 15:25:15 +0100
committerJon Skeet <skeet@pobox.com>2015-06-17 15:25:15 +0100
commita09b491080b5756d19c132f840ede5a7920b8d87 (patch)
treec176ee41fe2d3e2d341df7f536ee7f01c13e94a5 /csharp/src/ProtocolBuffers.Serialization/XmlReaderOptions.cs
parentd1b88f43109d23111e9cae158d25a8b7c9d7e36d (diff)
downloadprotobuf-a09b491080b5756d19c132f840ede5a7920b8d87.tar.gz
protobuf-a09b491080b5756d19c132f840ede5a7920b8d87.tar.bz2
protobuf-a09b491080b5756d19c132f840ede5a7920b8d87.zip
Delete "lite" project and serialization project+code
We'll probably want a lot of the code from the serialization project when we do JSON, but enough of it will change that it's not worth keeping in a broken state for now.
Diffstat (limited to 'csharp/src/ProtocolBuffers.Serialization/XmlReaderOptions.cs')
-rw-r--r--csharp/src/ProtocolBuffers.Serialization/XmlReaderOptions.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/csharp/src/ProtocolBuffers.Serialization/XmlReaderOptions.cs b/csharp/src/ProtocolBuffers.Serialization/XmlReaderOptions.cs
deleted file mode 100644
index f7eca1d7..00000000
--- a/csharp/src/ProtocolBuffers.Serialization/XmlReaderOptions.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-
-namespace Google.ProtocolBuffers.Serialization
-{
- /// <summary>
- /// Options available for the xml reader output
- /// </summary>
- [Flags]
- public enum XmlReaderOptions
- {
- /// <summary> Simple xml formatting with no attributes </summary>
- None,
-
- /// <summary> Requires that arrays items are nested in an &lt;item> element </summary>
- ReadNestedArrays = 1,
- }
-} \ No newline at end of file