예제 #1
0
파일: Session.cs 프로젝트: top501/DVTK-1
 //
 // The protected OnProgress method raises the event by invoking
 // the delegates. The sender is always this, the current instance
 // of the class.
 //
 internal void _OnActivityReport(ActivityReportEventArgs e)
 {
     // Invoke the delegates
     if (ActivityReportEvent != null)
     {
         ActivityReportEvent(this, e);
     }
 }
예제 #2
0
        public void ReportActivity(
            Wrappers.WrappedValidationMessageLevel activityReportLevel,
            System.String message)
        {
            ActivityReportEventArgs e =
                new ActivityReportEventArgs(_Convert(activityReportLevel), message);

            this.m_parentSession._OnActivityReport(e);
        }