public void UpdateProfile( Identifier userId, UserProfileType profile )
 {
     UpdateProfileRequest request = new UpdateProfileRequest() {
         UserId = userId,
         UserProfile = profile
     };
     CallWebService<IUserManagementServicev1_6, UpdateProfileRequest, UpdateProfileResponse>(
         m_service1_6, request, ( s, q ) => s.UpdateProfile( q ) );
 }
Beispiel #2
0
 /// <remarks/>
 public void UpdateProfileAsync(UpdateProfileRequest UpdateProfileRequest)
 {
     this.UpdateProfileAsync(UpdateProfileRequest, null);
 }
Beispiel #3
0
 /// <remarks/>
 public void UpdateProfileAsync(UpdateProfileRequest UpdateProfileRequest, object userState)
 {
     if ((this.UpdateProfileOperationCompleted == null)) {
         this.UpdateProfileOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateProfileOperationCompleted);
     }
     this.InvokeAsync("UpdateProfile", new object[] {
                 UpdateProfileRequest}, this.UpdateProfileOperationCompleted, userState);
 }
Beispiel #4
0
 /// <remarks/>
 public System.IAsyncResult BeginUpdateProfile(UpdateProfileRequest UpdateProfileRequest, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("UpdateProfile", new object[] {
                 UpdateProfileRequest}, callback, asyncState);
 }