mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 07:10:15 -05:00
14 lines
221 B
PowerShell
14 lines
221 B
PowerShell
|
|
function Test-PSCustomObjectMember()
|
||
|
|
{
|
||
|
|
param(
|
||
|
|
$PSObject,
|
||
|
|
$Name
|
||
|
|
);
|
||
|
|
|
||
|
|
if ($null -eq $PSObject) {
|
||
|
|
return $FALSE;
|
||
|
|
}
|
||
|
|
|
||
|
|
return ([bool]($PSObject.PSobject.Properties.Name -eq $Name));
|
||
|
|
}
|