Esempio n. 1
0
 /// <remarks/>
 public void SubmitAsync(Command[] commands) {
     this.SubmitAsync(commands, null);
 }
Esempio n. 2
0
 /// <remarks/>
 public void SubmitAsync(Command[] commands, object userState) {
     if ((this.SubmitOperationCompleted == null)) {
         this.SubmitOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSubmitOperationCompleted);
     }
     this.InvokeAsync("Submit", new object[] {
                 commands}, this.SubmitOperationCompleted, userState);
 }
Esempio n. 3
0
 /// <remarks/>
 public void ImportAsync(Command[] commands, Filter[] filters, string[][] data, bool includedHeaders, bool breakOnError, bool breakOnIncorrectTarget, object userState) {
     if ((this.ImportOperationCompleted == null)) {
         this.ImportOperationCompleted = new System.Threading.SendOrPostCallback(this.OnImportOperationCompleted);
     }
     this.InvokeAsync("Import", new object[] {
                 commands,
                 filters,
                 data,
                 includedHeaders,
                 breakOnError,
                 breakOnIncorrectTarget}, this.ImportOperationCompleted, userState);
 }
Esempio n. 4
0
 public Content[] Submit(Command[] commands) {
     object[] results = this.Invoke("Submit", new object[] {
                 commands});
     return ((Content[])(results[0]));
 }
Esempio n. 5
0
 /// <remarks/>
 public void ImportAsync(Command[] commands, Filter[] filters, string[][] data, bool includedHeaders, bool breakOnError, bool breakOnIncorrectTarget) {
     this.ImportAsync(commands, filters, data, includedHeaders, breakOnError, breakOnIncorrectTarget, null);
 }
Esempio n. 6
0
 public ImportResult[] Import(Command[] commands, Filter[] filters, [System.Xml.Serialization.XmlArrayItemAttribute("ArrayOfString")] [System.Xml.Serialization.XmlArrayItemAttribute(NestingLevel=1)] string[][] data, bool includedHeaders, bool breakOnError, bool breakOnIncorrectTarget) {
     object[] results = this.Invoke("Import", new object[] {
                 commands,
                 filters,
                 data,
                 includedHeaders,
                 breakOnError,
                 breakOnIncorrectTarget});
     return ((ImportResult[])(results[0]));
 }
Esempio n. 7
0
 /// <remarks/>
 public void ExportAsync(Command[] commands, Filter[] filters, int topCount, bool includeHeaders, bool breakOnError, object userState) {
     if ((this.ExportOperationCompleted == null)) {
         this.ExportOperationCompleted = new System.Threading.SendOrPostCallback(this.OnExportOperationCompleted);
     }
     this.InvokeAsync("Export", new object[] {
                 commands,
                 filters,
                 topCount,
                 includeHeaders,
                 breakOnError}, this.ExportOperationCompleted, userState);
 }
Esempio n. 8
0
 /// <remarks/>
 public void ExportAsync(Command[] commands, Filter[] filters, int topCount, bool includeHeaders, bool breakOnError) {
     this.ExportAsync(commands, filters, topCount, includeHeaders, breakOnError, null);
 }
Esempio n. 9
0
 public string[][] Export(Command[] commands, Filter[] filters, int topCount, bool includeHeaders, bool breakOnError) {
     object[] results = this.Invoke("Export", new object[] {
                 commands,
                 filters,
                 topCount,
                 includeHeaders,
                 breakOnError});
     return ((string[][])(results[0]));
 }