Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Rocker
0.1.1
Types/Rocker.Parsers/get_All.ps1
@(
foreach
(
$property
in
$this
.
psobject
.
properties
)
{
if
(
-not
$property
.
IsInstance
)
{
continue
}
if
(
-not
$property
-is
[psnoteproperty]
)
{
continue
}
$property
.
Value
}
)