예제 #1
0
 /// <remarks/>
 public void SaveUserProfileQuestionsAsync(vwQuestionAnswer[] QuestionAnswerList, System.Guid SessionId) {
     this.SaveUserProfileQuestionsAsync(QuestionAnswerList, SessionId, null);
 }
예제 #2
0
 /// <remarks/>
 public void SaveUserProfileQuestionsAsync(vwQuestionAnswer[] QuestionAnswerList, System.Guid SessionId, object userState) {
     if ((this.SaveUserProfileQuestionsOperationCompleted == null)) {
         this.SaveUserProfileQuestionsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSaveUserProfileQuestionsOperationCompleted);
     }
     this.InvokeAsync("SaveUserProfileQuestions", new object[] {
                 QuestionAnswerList,
                 SessionId}, this.SaveUserProfileQuestionsOperationCompleted, userState);
 }
예제 #3
0
 public Result SaveUserProfileQuestions(vwQuestionAnswer[] QuestionAnswerList, System.Guid SessionId) {
     object[] results = this.Invoke("SaveUserProfileQuestions", new object[] {
                 QuestionAnswerList,
                 SessionId});
     return ((Result)(results[0]));
 }