functions/Private/Converting/Complete-MgaResult.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
function Complete-MgaResult { param ( $Result, $CustomHeader, $ReturnVerbose, [bool]$ReturnAsJson ) try { if ($CustomHeader) { Disable-MgaCustomHeader } if ($Result) { $EndResult = $Result if ($ReturnAsJson -eq $true) { try { $EndResult = $Result | ConvertTo-Json -Depth 100 } catch { $EndResult = $Result } } return $EndResult } else { if ($ReturnVerbose -ne $false) { Write-Verbose 'No result returned' } } } catch { throw $_ } } |