protected override void InnerExec(MProcess _process, ref Result _result)
 {
     AssemblyLoadResult expResult = _result as AssemblyLoadResult;
     if (m_Notification != null){
         _process.SubscribeForAssemblyLoadedNotification(m_Notification);
         expResult.CommadStatus = true;
         expResult.Description = "Subscribed for Assembly Load Notification";
     } else {
         expResult.CommadStatus = false;
         expResult.Description = "Failed to Subscribe : Notifier is null";
     }
 }