コード例 #1
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void CreateOrUpdateSurveyAsync(string ticket, TransitSurvey survey) {
     this.CreateOrUpdateSurveyAsync(ticket, survey, null);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void CreateOrUpdateSurveyAsync(string ticket, TransitSurvey survey, object userState) {
     if ((this.CreateOrUpdateSurveyOperationCompleted == null)) {
         this.CreateOrUpdateSurveyOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdateSurveyOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdateSurvey", new object[] {
                 ticket,
                 survey}, this.CreateOrUpdateSurveyOperationCompleted, userState);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 public int CreateOrUpdateSurvey(string ticket, TransitSurvey survey) {
     object[] results = this.Invoke("CreateOrUpdateSurvey", new object[] {
                 ticket,
                 survey});
     return ((int)(results[0]));
 }