예제 #1
0
파일: Reference.cs 프로젝트: vinilin/SYTD
 /// <remarks/>
 public void CreateFileSetAsync(FileSet fset, bool needProgress) {
     this.CreateFileSetAsync(fset, needProgress, null);
 }
예제 #2
0
파일: Reference.cs 프로젝트: vinilin/SYTD
 /// <remarks/>
 public void CreateFileSetAsync(FileSet fset, bool needProgress, object userState) {
     if ((this.CreateFileSetOperationCompleted == null)) {
         this.CreateFileSetOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateFileSetOperationCompleted);
     }
     this.InvokeAsync("CreateFileSet", new object[] {
                 fset,
                 needProgress}, this.CreateFileSetOperationCompleted, userState);
 }
예제 #3
0
파일: Reference.cs 프로젝트: vinilin/SYTD
 public long CreateFileSet(FileSet fset, bool needProgress) {
     object[] results = this.Invoke("CreateFileSet", new object[] {
                 fset,
                 needProgress});
     return ((long)(results[0]));
 }