本文整理汇总了C#中System.Management.Automation.PSObject.GetSpecificPropertiesToSerialize方法的典型用法代码示例。如果您正苦于以下问题:C# PSObject.GetSpecificPropertiesToSerialize方法的具体用法?C# PSObject.GetSpecificPropertiesToSerialize怎么用?C# PSObject.GetSpecificPropertiesToSerialize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Management.Automation.PSObject
的用法示例。
在下文中一共展示了PSObject.GetSpecificPropertiesToSerialize方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: WritePSObjectProperties
private void WritePSObjectProperties(PSObject source, int depth)
{
depth = GetDepthOfSerialization(source, depth);
depth--;
if (source.GetSerializationMethod(null) == SerializationMethod.SpecificProperties)
{
PSMemberInfoInternalCollection<PSPropertyInfo> propertyCollection = new PSMemberInfoInternalCollection<PSPropertyInfo>();
foreach (string str in source.GetSpecificPropertiesToSerialize(null))
{
PSPropertyInfo member = source.Properties[str];
if (member != null)
{
propertyCollection.Add(member);
}
}
this.SerializeProperties(propertyCollection, "Property", depth);
}
else
{
foreach (PSPropertyInfo info2 in source.Properties)
{
object obj2 = AutomationNull.Value;
try
{
obj2 = info2.Value;
}
catch (GetValueException)
{
this.WritePropertyWithNullValue(this._writer, info2, depth);
continue;
}
if (obj2 == null)
{
this.WritePropertyWithNullValue(this._writer, info2, depth);
}
else
{
this.WriteOneObject(obj2, info2.Name, depth);
}
}
}
}
示例2: WritePSObjectProperties
/// <summary>
/// Serializes properties of PSObject
/// </summary>
private void WritePSObjectProperties(PSObject source, int depth)
{
Dbg.Assert(source != null, "caller should validate the information");
depth = GetDepthOfSerialization(source, depth);
//Depth available for each property is one less
--depth;
Dbg.Assert(depth >= 0, "depth should be greater or equal to zero");
if (source.GetSerializationMethod(null) == SerializationMethod.SpecificProperties)
{
PSMemberInfoInternalCollection<PSPropertyInfo> specificProperties = new PSMemberInfoInternalCollection<PSPropertyInfo>();
foreach (string propertyName in source.GetSpecificPropertiesToSerialize(null))
{
PSPropertyInfo property = source.Properties[propertyName];
if (property != null)
{
specificProperties.Add(property);
}
}
SerializeProperties(specificProperties, CustomSerializationStrings.Properties, depth);
return;
}
foreach (PSPropertyInfo prop in source.Properties)
{
Dbg.Assert(prop != null, "propertyCollection should only have member of type PSProperty");
object value = AutomationNull.Value;
//PSObject throws GetValueException if it cannot
//get value for a property.
try
{
value = prop.Value;
}
catch (GetValueException)
{
WritePropertyWithNullValue(_writer, prop, depth);
continue;
}
//Write the property
if (value == null)
{
WritePropertyWithNullValue(_writer, prop, depth);
}
else
{
WriteOneObject(value, prop.Name, depth);
}
}
}