Example #1
0
        private System.IAsyncResult OnBeginFillSyncServiceData(object[] inValues, System.AsyncCallback callback, object asyncState)
        {
            string conferenceName = ((string)(inValues[0]));
            string sharer         = ((string)(inValues[1]));
            string uri            = ((string)(inValues[2]));

            ConferenceModel.ConferenceSpaceAsyncWebservice.FileType fileType = ((ConferenceModel.ConferenceSpaceAsyncWebservice.FileType)(inValues[3]));
            return(this.BeginFillSyncServiceData(conferenceName, sharer, uri, fileType, callback, asyncState));
        }
Example #2
0
 public void FillSyncServiceDataAsync(string conferenceName, string sharer, string uri, ConferenceModel.ConferenceSpaceAsyncWebservice.FileType fileType, object userState)
 {
     if ((this.onBeginFillSyncServiceDataDelegate == null))
     {
         this.onBeginFillSyncServiceDataDelegate = new BeginOperationDelegate(this.OnBeginFillSyncServiceData);
     }
     if ((this.onEndFillSyncServiceDataDelegate == null))
     {
         this.onEndFillSyncServiceDataDelegate = new EndOperationDelegate(this.OnEndFillSyncServiceData);
     }
     if ((this.onFillSyncServiceDataCompletedDelegate == null))
     {
         this.onFillSyncServiceDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFillSyncServiceDataCompleted);
     }
     base.InvokeAsync(this.onBeginFillSyncServiceDataDelegate, new object[] {
         conferenceName,
         sharer,
         uri,
         fileType
     }, this.onEndFillSyncServiceDataDelegate, this.onFillSyncServiceDataCompletedDelegate, userState);
 }
Example #3
0
 public void FillSyncServiceDataAsync(string conferenceName, string sharer, string uri, ConferenceModel.ConferenceSpaceAsyncWebservice.FileType fileType)
 {
     this.FillSyncServiceDataAsync(conferenceName, sharer, uri, fileType, null);
 }
Example #4
0
 public System.IAsyncResult BeginFillSyncServiceData(string conferenceName, string sharer, string uri, ConferenceModel.ConferenceSpaceAsyncWebservice.FileType fileType, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginFillSyncServiceData(conferenceName, sharer, uri, fileType, callback, asyncState));
 }
Example #5
0
 public void FillSyncServiceData(string conferenceName, string sharer, string uri, ConferenceModel.ConferenceSpaceAsyncWebservice.FileType fileType)
 {
     base.Channel.FillSyncServiceData(conferenceName, sharer, uri, fileType);
 }