PSPropertyExpression.ResolveNames Method

Definition

Overloads

ResolveNames(PSObject)

Resolve the names matched by the expression.

ResolveNames(PSObject, Boolean)

Resolve the names matched by the expression.

ResolveNames(PSObject)

Resolve the names matched by the expression.

public System.Collections.Generic.List<Microsoft.PowerShell.Commands.PSPropertyExpression> ResolveNames (System.Management.Automation.PSObject target);
member this.ResolveNames : System.Management.Automation.PSObject -> System.Collections.Generic.List<Microsoft.PowerShell.Commands.PSPropertyExpression>
Public Function ResolveNames (target As PSObject) As List(Of PSPropertyExpression)

Parameters

target
PSObject

The object to apply the expression against.

Returns

Applies to

ResolveNames(PSObject, Boolean)

Resolve the names matched by the expression.

public System.Collections.Generic.List<Microsoft.PowerShell.Commands.PSPropertyExpression> ResolveNames (System.Management.Automation.PSObject target, bool expand);
member this.ResolveNames : System.Management.Automation.PSObject * bool -> System.Collections.Generic.List<Microsoft.PowerShell.Commands.PSPropertyExpression>
Public Function ResolveNames (target As PSObject, expand As Boolean) As List(Of PSPropertyExpression)

Parameters

target
PSObject

The object to apply the expression against.

expand
Boolean

If the matched properties are property sets, expand them.

Returns

Applies to