コード例 #1
0
        /// <summary>
        /// Raises the method updated event
        /// </summary>
        /// <param name="e">The event arguments</param>
        protected virtual void OnMethodUpdatedEvent(MethodEventRaisedArgs e)
        {
            EventHandler <MethodEventRaisedArgs> handler = MethodUpdatedEvent;

            if (null != handler)
            {
                handler(this, e);
            }
        }
コード例 #2
0
ファイル: MethodTrack.cs プロジェクト: akondrahman/SrcML.NET
 /// <summary>
 /// Raises the method updated event
 /// </summary>
 /// <param name="e">The event arguments</param>
 protected virtual void OnMethodUpdatedEvent(MethodEventRaisedArgs e)
 {
     EventHandler<MethodEventRaisedArgs> handler = MethodUpdatedEvent;
     if (null != handler)
     {
         handler(this, e);
     }
 }