本文整理匯總了C#中Newtonsoft.Json.JsonWriter.WriteSpecifiedProperty方法的典型用法代碼示例。如果您正苦於以下問題:C# JsonWriter.WriteSpecifiedProperty方法的具體用法?C# JsonWriter.WriteSpecifiedProperty怎麽用?C# JsonWriter.WriteSpecifiedProperty使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Newtonsoft.Json.JsonWriter
的用法示例。
在下文中一共展示了JsonWriter.WriteSpecifiedProperty方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: WriteJson
/// <inheritdoc/>
public void WriteJson(JsonWriter writer)
{
if (!string.IsNullOrWhiteSpace(name))
{
System.Diagnostics.Debug.Assert(string.IsNullOrWhiteSpace(bucket), "Bucket should be empty if Name specified");
System.Diagnostics.Debug.Assert(string.IsNullOrWhiteSpace(key), "Key should be empty if Name specified");
System.Diagnostics.Debug.Assert(string.IsNullOrWhiteSpace(source), "Source should be empty if Name specified");
}
else if (!string.IsNullOrWhiteSpace(source))
{
System.Diagnostics.Debug.Assert(string.IsNullOrWhiteSpace(bucket), "Bucket should be empty if Name specified");
System.Diagnostics.Debug.Assert(string.IsNullOrWhiteSpace(key), "Key should be empty if Name specified");
System.Diagnostics.Debug.Assert(string.IsNullOrWhiteSpace(name), "Name should be empty if Name specified");
}
else
{
System.Diagnostics.Debug.Assert(!string.IsNullOrWhiteSpace(bucket), "Bucket should not be empty");
System.Diagnostics.Debug.Assert(!string.IsNullOrWhiteSpace(key), "Key should not be empty");
}
writer.WriteSpecifiedProperty("language", RiakConstants.MapReduceLanguage.JavaScript)
.WriteSpecifiedProperty("source", source)
.WriteSpecifiedProperty("name", name)
.WriteSpecifiedProperty("bucket", bucket)
.WriteSpecifiedProperty("key", key);
}
示例2: WriteJson
public void WriteJson(JsonWriter writer)
{
System.Diagnostics.Debug.Assert(!string.IsNullOrWhiteSpace(_module), "Module must be set");
System.Diagnostics.Debug.Assert(!string.IsNullOrWhiteSpace(_function), "Function must be set");
writer.WriteSpecifiedProperty("language", RiakConstants.MapReduceLanguage.Erlang)
.WriteSpecifiedProperty("module", _module)
.WriteSpecifiedProperty("function", _function);
}
示例3: WriteJson
protected override void WriteJson(JsonWriter writer)
{
writer.WriteSpecifiedProperty("bucket", bucket)
.WriteSpecifiedProperty("tag", tag);
}