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

updateProfileAttribute() public method

public updateProfileAttribute ( int reqSeq, ProfileAttribute attr, string value ) : void
reqSeq int
attr ProfileAttribute
value string
return void
      public void updateProfileAttribute(int reqSeq, ProfileAttribute attr, string value)
      {
        #if !SILVERLIGHT
        send_updateProfileAttribute(reqSeq, attr, value);
        recv_updateProfileAttribute();

        #else
        var asyncResult = Begin_updateProfileAttribute(null, null, reqSeq, attr, value);
        End_updateProfileAttribute(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client