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-01-02 08:29:31 +0300
committerJamesNK <james@newtonking.com>2009-01-02 08:29:31 +0300
commit0319263756212f4a1875cda6534b9b8e1fb53188 (patch)
tree5b0e25e2fec10a9137390756c70510fe43174e79 /Src/Newtonsoft.Json.Tests/TestObjects/ConverableMembers.cs
parentf95868233e687e5f45665904c9accf89e71ee92f (diff)
-Added JSON Schema implementation
-Move test serialization objects to TestObjects namespace -Fixed JsonConvert to always write a floating point number with a decimal place -Changed Type values to serialize and deserialize to type name string -Fixed JsonWriter to allow objects and arrays to be written in a constructor -Added JsonContainerAttribute with Id, Title and Description members. JsonObject and JsonArray inherit from this attribute -Added JsonArrayAttribute. Has flag to control whether array can contain null items. -Added IsRequired to JsonProperty -Replaced protected method GetSerializableMembers with GetMemberMappings on JsonSerializer -Fixed QuoteChar not getting set when parsing property name -Added Load(JsonReader) to JProperty, JConstructor -Fixed error when populating JProperty with content from collection -Added the ability for JsonTokenWriter to write individual values as well as arrays and objects -Added CreateReader to JToken -Added FromObject to JToken -Added ReadFrom to JToken
Diffstat (limited to 'Src/Newtonsoft.Json.Tests/TestObjects/ConverableMembers.cs')
-rw-r--r--Src/Newtonsoft.Json.Tests/TestObjects/ConverableMembers.cs48
1 files changed, 48 insertions, 0 deletions
diff --git a/Src/Newtonsoft.Json.Tests/TestObjects/ConverableMembers.cs b/Src/Newtonsoft.Json.Tests/TestObjects/ConverableMembers.cs
new file mode 100644
index 0000000..9b2e101
--- /dev/null
+++ b/Src/Newtonsoft.Json.Tests/TestObjects/ConverableMembers.cs
@@ -0,0 +1,48 @@
+#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;
+
+namespace Newtonsoft.Json.Tests.TestObjects
+{
+ [JsonObject]
+ public class ConverableMembers
+ {
+ public string String = "string";
+ public int Int32 = int.MaxValue;
+ public uint UInt32 = uint.MaxValue;
+ public byte Byte = byte.MaxValue;
+ public sbyte SByte = sbyte.MaxValue;
+ public short Short = short.MaxValue;
+ public ushort UShort = ushort.MaxValue;
+ public long Long = long.MaxValue;
+ public ulong ULong = long.MaxValue;
+ public double Double = double.MaxValue;
+ public float Float = float.MaxValue;
+ public DBNull DBNull = DBNull.Value;
+ public bool Bool = true;
+ public char Char = '\0';
+ }
+} \ No newline at end of file