Exemple #1
0
        protected virtual void OnShowSource(MethodItem methodItem)
        {
            ShowSourceEventArgs e = new ShowSourceEventArgs ();
            e.methodItem = methodItem;

            OnShowSource (e);
        }
Exemple #2
0
 protected virtual void OnShowSource(ShowSourceEventArgs e)
 {
     if (ShowSource != null)
         ShowSource (this, e);
 }