Exemple #1
0
 /// <remarks/>
 public void SetDataSourceContentsAsync(string DataSource, DataSourceDefinition Definition, object userState)
 {
     if ((_setDataSourceContentsOperationCompleted == null))
     {
         _setDataSourceContentsOperationCompleted =
             new SendOrPostCallback(OnSetDataSourceContentsOperationCompleted);
     }
     InvokeAsync("SetDataSourceContents", new object[]
                                              {
                                                  DataSource,
                                                  Definition
                                              }, _setDataSourceContentsOperationCompleted, userState);
 }
Exemple #2
0
 /// <remarks/>
 public IAsyncResult BeginSetDataSourceContents(string DataSource, DataSourceDefinition Definition,
                                                AsyncCallback callback, object asyncState)
 {
     return BeginInvoke("SetDataSourceContents", new object[]
                                                     {
                                                         DataSource,
                                                         Definition
                                                     }, callback, asyncState);
 }
Exemple #3
0
 /// <remarks/>
 public void SetDataSourceContentsAsync(string DataSource, DataSourceDefinition Definition)
 {
     SetDataSourceContentsAsync(DataSource, Definition, null);
 }
Exemple #4
0
 public void SetDataSourceContents(string DataSource, DataSourceDefinition Definition)
 {
     Invoke("SetDataSourceContents", new object[]
                                         {
                                             DataSource,
                                             Definition
                                         });
 }
Exemple #5
0
 /// <remarks/>
 public void CreateDataSourceAsync(string DataSource, string parent, bool overwrite,
                                   DataSourceDefinition Definition, Property[] properties, object userState)
 {
     if ((_createDataSourceOperationCompleted == null))
     {
         _createDataSourceOperationCompleted = new SendOrPostCallback(OnCreateDataSourceOperationCompleted);
     }
     InvokeAsync("CreateDataSource", new object[]
                                         {
                                             DataSource,
                                             parent,
                                             overwrite,
                                             Definition,
                                             properties
                                         }, _createDataSourceOperationCompleted, userState);
 }
Exemple #6
0
 /// <remarks/>
 public void CreateDataSourceAsync(string DataSource, string parent, bool overwrite,
                                   DataSourceDefinition Definition, Property[] properties)
 {
     CreateDataSourceAsync(DataSource, parent, overwrite, Definition, properties, null);
 }
Exemple #7
0
 /// <remarks/>
 public IAsyncResult BeginCreateDataSource(string DataSource, string parent, bool overwrite,
                                           DataSourceDefinition Definition, Property[] properties,
                                           AsyncCallback callback, object asyncState)
 {
     return BeginInvoke("CreateDataSource", new object[]
                                                {
                                                    DataSource,
                                                    parent,
                                                    overwrite,
                                                    Definition,
                                                    properties
                                                }, callback, asyncState);
 }
Exemple #8
0
 public void CreateDataSource(string DataSource, string parent, bool overwrite, DataSourceDefinition Definition,
                              Property[] properties)
 {
     Invoke("CreateDataSource", new object[]
                                    {
                                        DataSource,
                                        parent,
                                        overwrite,
                                        Definition,
                                        properties
                                    });
 }