Ejemplo n.º 1
0
        public void SaveCallDebugAsync(TLInputPhoneCall peer, TLDataJSON debug, Action <TLBool> callback, Action <TLRPCError> faultCallback = null)
        {
            var obj = new TLSaveCallDebug {
                Peer = peer, Debug = debug
            };

            SendInformativeMessage("phone.saveCallDebug", obj, callback, faultCallback);
        }
        public void SaveCallDebugAsync(TLInputPhoneCall peer, TLDataJSON debug, Action <bool> callback, Action <TLRPCError> faultCallback = null)
        {
            var obj = new TLPhoneSaveCallDebug {
                Peer = peer, Debug = debug
            };

            const string caption = "phone.saveCallDebug";

            SendInformativeMessage(caption, obj, callback, faultCallback);
        }
Ejemplo n.º 3
0
 public override void DeserializeResponse(BinaryReader br)
 {
     this.Response = (TLDataJSON)ObjectUtils.DeserializeObject(br);
 }
Ejemplo n.º 4
0
 public override void DeserializeBody(BinaryReader br)
 {
     Hash           = br.ReadInt32();
     CountriesLangs = (TLDataJSON)ObjectUtils.DeserializeObject(br);
 }