Ejemplo n.º 1
0
 protected virtual void On_Recall(_RecallEventArgs e)
 {
     if (_Recall != null)
     {
         _Recall(this, e);
     }
 }
Ejemplo n.º 2
0
        private _RecallEventArgs On_RecallForOut()
        {
            _RecallEventArgs args = new _RecallEventArgs();

            On_Recall(args);

            return(args);
        }
Ejemplo n.º 3
0
        private _RecallEventArgs On_Recall(int x, int y)
        {
            _RecallEventArgs args = new _RecallEventArgs(x, y);

            On_Recall(args);

            return(args);
        }