예제 #1
0
        public void OnAfterDownload(WcfClientArgs e)
        {
            var handler = AfterDownload;

            if (handler != null)
            {
                handler(this, e);
            }
        }
예제 #2
0
        public void OnBeforeDownload(WcfClientArgs e)
        {
            var handler = BeforeDownload;

            if (handler != null)
            {
                handler(this, e);
            }
        }
예제 #3
0
파일: Module.cs 프로젝트: xafdelta/xafdelta
 public void OnBeforeUpload(WcfClientArgs e)
 {
     var handler = BeforeUpload;
     if (handler != null) handler(this, e);
 }
예제 #4
0
파일: Module.cs 프로젝트: xafdelta/xafdelta
 public void OnAfterUpload(WcfClientArgs e)
 {
     var handler = AfterUpload;
     if (handler != null) handler(this, e);
 }