Example #1
0
 /// <remarks/>
 public void SetItemDataSourcesAsync(string ItemPath, DataSource[] DataSources, object userState) {
     if ((this.SetItemDataSourcesOperationCompleted == null)) {
         this.SetItemDataSourcesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSetItemDataSourcesOperationCompleted);
     }
     this.InvokeAsync("SetItemDataSources", new object[] {
                 ItemPath,
                 DataSources}, this.SetItemDataSourcesOperationCompleted, userState);
 }
Example #2
0
 /// <remarks/>
 public void SetItemDataSourcesAsync(string ItemPath, DataSource[] DataSources) {
     this.SetItemDataSourcesAsync(ItemPath, DataSources, null);
 }
Example #3
0
 public void SetItemDataSources(string ItemPath, DataSource[] DataSources) {
     this.Invoke("SetItemDataSources", new object[] {
                 ItemPath,
                 DataSources});
 }
Example #4
0
 /// <remarks/>
 public void PrepareQueryAsync(DataSource DataSource, DataSetDefinition DataSet, object userState) {
     if ((this.PrepareQueryOperationCompleted == null)) {
         this.PrepareQueryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnPrepareQueryOperationCompleted);
     }
     this.InvokeAsync("PrepareQuery", new object[] {
                 DataSource,
                 DataSet}, this.PrepareQueryOperationCompleted, userState);
 }
Example #5
0
 /// <remarks/>
 public void PrepareQueryAsync(DataSource DataSource, DataSetDefinition DataSet) {
     this.PrepareQueryAsync(DataSource, DataSet, null);
 }
Example #6
0
 public DataSetDefinition PrepareQuery(DataSource DataSource, DataSetDefinition DataSet, out bool Changed, out string[] ParameterNames) {
     object[] results = this.Invoke("PrepareQuery", new object[] {
                 DataSource,
                 DataSet});
     Changed = ((bool)(results[1]));
     ParameterNames = ((string[])(results[2]));
     return ((DataSetDefinition)(results[0]));
 }