icinga-powershell-framework/lib/core/tools/Test-PSCustomObjectMember.psm1

14 lines
221 B
PowerShell
Raw Normal View History

function Test-PSCustomObjectMember()
{
param(
$PSObject,
$Name
);
if ($null -eq $PSObject) {
return $FALSE;
}
return ([bool]($PSObject.PSobject.Properties.Name -eq $Name));
}