LINE.Datatypes.TalkService.Client.updateSettingsAttribute C# (CSharp) Method

updateSettingsAttribute() public method

public updateSettingsAttribute ( int reqSeq, SettingsAttribute attr, string value ) : void
reqSeq int
attr SettingsAttribute
value string
return void
      public void updateSettingsAttribute(int reqSeq, SettingsAttribute attr, string value)
      {
        #if !SILVERLIGHT
        send_updateSettingsAttribute(reqSeq, attr, value);
        recv_updateSettingsAttribute();

        #else
        var asyncResult = Begin_updateSettingsAttribute(null, null, reqSeq, attr, value);
        End_updateSettingsAttribute(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client