本文整理汇总了C#中JToken.ToPsObject方法的典型用法代码示例。如果您正苦于以下问题:C# JToken.ToPsObject方法的具体用法?C# JToken.ToPsObject怎么用?C# JToken.ToPsObject使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JToken
的用法示例。
在下文中一共展示了JToken.ToPsObject方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ConvertPropertyValueForPsObject
/// <summary>
/// Converts a property value for a <see cref="JObject"/> into an <see cref="object"/> that can be
/// used as the value of a <see cref="PSNoteProperty"/>.
/// </summary>
/// <param name="propertyValue">The <see cref="JToken"/> value.</param>
/// <param name="objectFormat">The <see cref="ResourceObjectFormat"/></param>
internal static object ConvertPropertyValueForPsObject(JToken propertyValue, ResourceObjectFormat objectFormat)
{
if (propertyValue.Type == JTokenType.Object)
{
return propertyValue.ToPsObject(objectFormat);
}
if (propertyValue.Type == JTokenType.Array)
{
var jArray = (JArray)propertyValue;
var array = new object[jArray.Count];
for (int i = 0; i < array.Length; ++i)
{
array[i] = JTokenExtensions.ConvertPropertyValueForPsObject(jArray[i], objectFormat);
}
return array;
}
Type primitiveType;
if (JTokenExtensions.PrimitiveTypeMap.TryGetValue(propertyValue.Type, out primitiveType))
{
try
{
return propertyValue.ToObject(primitiveType, JsonExtensions.JsonObjectTypeSerializer);
}
catch (FormatException)
{
}
catch (ArgumentException)
{
}
catch (JsonException)
{
}
}
return propertyValue.ToString();
}
示例2: WriteObject
/// <summary>
/// Writes a <see cref="JToken"/> object as a <see cref="PSObject"/>.
/// </summary>
/// <param name="result">The result of the action.</param>
protected void WriteObject(JToken result)
{
this.WriteObject(sendToPipeline: result.ToPsObject(), enumerateCollection: true);
}
示例3: WriteObject
/// <summary>
/// Writes a <see cref="JToken"/> object as a <see cref="PSObject"/>.
/// </summary>
/// <param name="result">The result of the action.</param>
/// <param name="objectFormat">The <see cref="ResourceObjectFormat"/></param>
protected void WriteObject(JToken result, ResourceObjectFormat objectFormat)
{
this.WriteObject(sendToPipeline: result.ToPsObject(objectFormat), enumerateCollection: true);
}