//
        // NTAuth::RevertToSelf()
        // Created:   12-01-1999: L.M.
        // Description:
        // reverts the server back to itself
        //
        public void RevertToSelf()
        {
            SecurityStatus status = (SecurityStatus)SSPIWrapper.RevertSecurityContext(GlobalSSPI.SSPIAuth, m_SecurityContext.Handle);

            if (status != SecurityStatus.OK)
            {
                throw new Win32Exception((int)status);
            }
        }