Пример #1
0
 /// <remarks/>
 public void SendFileExAsync(SendFileInformation sendInfo) {
     this.SendFileExAsync(sendInfo, null);
 }
Пример #2
0
 /// <remarks/>
 public void SendFileExAsync(SendFileInformation sendInfo, object userState) {
     if ((this.SendFileExOperationCompleted == null)) {
         this.SendFileExOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSendFileExOperationCompleted);
     }
     this.InvokeAsync("SendFileEx", new object[] {
                 sendInfo}, this.SendFileExOperationCompleted, userState);
 }
Пример #3
0
 public void SendFileEx(SendFileInformation sendInfo) {
     this.Invoke("SendFileEx", new object[] {
                 sendInfo});
 }