public function SetIdentity($Value, $Persist = FALSE)
 {
     $this->_Identity->SetIdentity($Value, $Persist);
 }
 /**
  * Destroys the user's session cookie - essentially de-authenticating them.
  */
 public function DeAuthenticate()
 {
     $this->_Identity->SetIdentity(NULL);
 }