The following example gets the unique identifiers of the items that are currently checked out by the current user.



Code Sample


# Gets the identifiers of the items that are checked out by the current user.

$identifiers = $xia.GET_CheckedOutItemIdentifiers();

foreach ($identifier in $identifiers)

{

    Write-Host $identifier;