Exemple #1
0
 public void PostDeregister()
 {
     if (_inner != null)
     {
         try
         {
             _inner.PostDeregister();
         }
         catch (Exception ex)
         {
             if (ex is SecurityException)
             {
                 throw;
             }
             throw new MBeanRegistrationException("PostDeregister.", ex);
         }
     }
 }