コード例 #1
0
ファイル: ImagePullBase.cs プロジェクト: yecaokinux/MesDemo
        protected void OnGroupDownloadCompleted(GroupDownloadEventArgs e)
        {
            EventHandler <GroupDownloadEventArgs> handler = GroupDownloadCompleted;

            if (handler != null)
            {
                handler(this, e);
            }
        }
コード例 #2
0
ファイル: ImagePullBase.cs プロジェクト: TGHGH/MesDemo
 protected void OnGroupDownloading(GroupDownloadEventArgs e)
 {
     EventHandler<GroupDownloadEventArgs> handler = GroupDownloading;
     if (handler != null)
     {
         handler(this, e);
     }
 }