Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamesNK <james@newtonking.com>2009-10-10 04:54:01 +0400
committerJamesNK <james@newtonking.com>2009-10-10 04:54:01 +0400
commit75627d629222cbfa7dce38f015b8e03daa481bf7 (patch)
tree13d5842e42cba586ac52d27f32486892917aa1a3 /Src/Newtonsoft.Json.Tests/TestObjects/ListTestClass.cs
parente8dc0bb7649f10dee3a4bfa5d12ead52a87ca077 (diff)
-XML documentation
-Changed OnError to be available in .NET 2.0, Silverlight and Compact Framework builds -Added StreamingContext stand-in for frameworks where it isn't available -Split test classes out of JsonSerializerTests
Diffstat (limited to 'Src/Newtonsoft.Json.Tests/TestObjects/ListTestClass.cs')
-rw-r--r--Src/Newtonsoft.Json.Tests/TestObjects/ListTestClass.cs45
1 files changed, 45 insertions, 0 deletions
diff --git a/Src/Newtonsoft.Json.Tests/TestObjects/ListTestClass.cs b/Src/Newtonsoft.Json.Tests/TestObjects/ListTestClass.cs
new file mode 100644
index 0000000..38ca989
--- /dev/null
+++ b/Src/Newtonsoft.Json.Tests/TestObjects/ListTestClass.cs
@@ -0,0 +1,45 @@
+#region License
+// Copyright (c) 2007 James Newton-King
+//
+// Permission is hereby granted, free of charge, to any person
+// obtaining a copy of this software and associated documentation
+// files (the "Software"), to deal in the Software without
+// restriction, including without limitation the rights to use,
+// copy, modify, merge, publish, distribute, sublicense, and/or sell
+// copies of the Software, and to permit persons to whom the
+// Software is furnished to do so, subject to the following
+// conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+// OTHER DEALINGS IN THE SOFTWARE.
+#endregion
+
+using System.Collections.Generic;
+
+namespace Newtonsoft.Json.Tests.TestObjects
+{
+ [JsonObject(MemberSerialization.OptIn)]
+ public class ListTestClass
+ {
+ [JsonProperty]
+ public string id { get; set; }
+ [JsonProperty]
+ public List<ListItem> items { get; set; }
+ }
+
+ [JsonObject(MemberSerialization.OptIn)]
+ public class ListItem
+ {
+ [JsonProperty]
+ public string id { get; set; }
+ }
+} \ No newline at end of file