本文整理匯總了C#中Newtonsoft.Json.JsonWriter.IsNotNull方法的典型用法代碼示例。如果您正苦於以下問題:C# JsonWriter.IsNotNull方法的具體用法?C# JsonWriter.IsNotNull怎麽用?C# JsonWriter.IsNotNull使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Newtonsoft.Json.JsonWriter
的用法示例。
在下文中一共展示了JsonWriter.IsNotNull方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: WriteJson
/// <summary>
/// Writes the JSON representation of the <see langword="object"/>.
/// </summary>
/// <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
/// <param name="value">The value.</param>
/// <param name="serializer">The calling serializer.</param>
/// <exception cref="ArgumentOutOfRangeException">
/// The <paramref name="value"/> is out of range. Value must be of type <see cref="T:System.DateTime"/>
/// </exception>
public override void WriteJson(JsonWriter writer, Object value, JsonSerializer serializer)
{
if (!(value is DateTime))
{
throw new ArgumentOutOfRangeException("value",
value.IsNotNull() ? value.GetType() : null,
String.Format(CultureInfo.CurrentCulture, "{0}.", Resources.ValueOutOfRangeMustBeTypeDateTime));
}
Debug.Assert(writer.IsNotNull(), "writer != null");
writer.WriteValue(((DateTime)value).ToUnixTime());
}