Esempio n. 1
0
 private void WriteConstructorDate(JsonReader reader)
 {
     if (!reader.Read()) throw JsonWriterException.Create(this, "Unexpected end when reading date constructor.", null);
     if (reader.TokenType != JsonToken.Integer) throw JsonWriterException.Create(this, "Unexpected token when reading date constructor. Expected Integer, got " + reader.TokenType, null);
     var ticks = (long)reader.Value;
     var date = DateTimeUtils.ConvertJavaScriptTicksToDateTime(ticks);
     if (!reader.Read()) throw JsonWriterException.Create(this, "Unexpected end when reading date constructor.", null);
     if (reader.TokenType != JsonToken.EndConstructor) throw JsonWriterException.Create(this, "Unexpected token when reading date constructor. Expected EndConstructor, got " + reader.TokenType, null);
     WriteValue(date);
 }
Esempio n. 2
0
 internal void WriteToken(JsonReader reader, int initialDepth, bool writeChildren, bool writeDateConstructorAsDate)
 {
     do
     {
         // write a JValue date when the constructor is for a date
         if (writeDateConstructorAsDate && reader.TokenType == JsonToken.StartConstructor && string.Equals(reader.Value.ToString(), "Date", StringComparison.Ordinal))
             WriteConstructorDate(reader);
         else
             WriteTokenInternal(reader.TokenType, reader.Value);
     } while (
         // stop if we have reached the end of the token being read
         initialDepth - 1 < reader.Depth - (JsonTokenUtils.IsEndToken(reader.TokenType) ? 1 : 0)
         && writeChildren
         && reader.Read());
 }