baseModules/PPoShTools/1.0.7/Private/Utils/ConvertTo-HashtableFromPsCustomObject.ps1
function ConvertTo-HashtableFromPsCustomObject { #requires -Version 3.0 <# .SYNOPSIS Converts any powershell custom object to a custom hashtable. .DESCRIPTION Iterates through elements of a custom object and converts them to a corresponding items in a hashtable. Uses recursion to go deep into json object. .PARAMETER PSCustomObject PS Custom Object that should be converted to a hashtable .EXAMPLE ConvertTo-HashtableFromPsCustomObject -PSCustomObject SomePSCustomObject This will convert SomePSCustomObject to a corresponding hashtable .INPUTS Any Powershell Custom Object .OUTPUTS A hashtable #> [CmdletBinding()] [OutputType([HashTable])] param ( [Parameter(Mandatory = $true,Position = 0, ValueFromPipeline = $true,ValueFromPipelineByPropertyName = $true)] [object[]] $PSCustomObject ) process { foreach ($myPsObject in $PSCustomObject) { $output = @{} $myPsObject | Get-Member -MemberType *Property | ForEach-Object { $value = $myPsObject.($_.name) if ($value -is [PSCustomObject]) { $value = ConvertTo-HashtableFromPsCustomObject -psCustomObject $value } $output.($_.name) = $value } $output } } } |