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

updateSettings() public method

public updateSettings ( int reqSeq, Settings settings ) : void
reqSeq int
settings Settings
return void
      public void updateSettings(int reqSeq, Settings settings)
      {
        #if !SILVERLIGHT
        send_updateSettings(reqSeq, settings);
        recv_updateSettings();

        #else
        var asyncResult = Begin_updateSettings(null, null, reqSeq, settings);
        End_updateSettings(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client