LineSharp.Datatypes.TalkService.Client.updateProfile C# (CSharp) Method

updateProfile() public method

public updateProfile ( int reqSeq, Profile profile ) : void
reqSeq int
profile Profile
return void
      public void updateProfile(int reqSeq, Profile profile)
      {
        #if !SILVERLIGHT
        send_updateProfile(reqSeq, profile);
        recv_updateProfile();

        #else
        var asyncResult = Begin_updateProfile(null, null, reqSeq, profile);
        End_updateProfile(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client