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

updateBuddySetting() public method

public updateBuddySetting ( string key, string value ) : void
key string
value string
return void
      public void updateBuddySetting(string key, string value)
      {
        #if !SILVERLIGHT
        send_updateBuddySetting(key, value);
        recv_updateBuddySetting();

        #else
        var asyncResult = Begin_updateBuddySetting(null, null, key, value);
        End_updateBuddySetting(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client