LdapTools\Security\SecurityDescriptor::setOwner PHP 메소드

setOwner() 공개 메소드

Set the owner SID for the security descriptor.
public setOwner ( SID | string $owner )
$owner SID | string
    public function setOwner($owner)
    {
        $this->owner = $owner instanceof SID ? $owner : new SID($owner);
        return $this;
    }