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

updateContactSetting() public method

public updateContactSetting ( int reqSeq, string mid, ContactSetting flag, string value ) : void
reqSeq int
mid string
flag ContactSetting
value string
return void
      public void updateContactSetting(int reqSeq, string mid, ContactSetting flag, string value)
      {
        #if !SILVERLIGHT
        send_updateContactSetting(reqSeq, mid, flag, value);
        recv_updateContactSetting();

        #else
        var asyncResult = Begin_updateContactSetting(null, null, reqSeq, mid, flag, value);
        End_updateContactSetting(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client