void ICallbackForProcessWithCallbackService.ProgressReport(ProcessWithCallbackProgressReport a_Report)
 {
     if (this.m_OnProgressReport != null)
     {
         this.m_OnProgressReport(a_Report);
     }
 }
 void ICallbackForProcessWithCallbackService.Initialized(ProcessWithCallbackProgressReport a_Report)
 {
     if (this.m_OnInitialized != null)
     {
         this.m_OnInitialized(a_Report);
     }
 }