Exemple #1
0
 public void MergeFrom(RequestEnvelope other)
 {
     if (other == null)
     {
         return;
     }
     if (other.StatusCode != 0)
     {
         StatusCode = other.StatusCode;
     }
     if (other.RequestId != 0UL)
     {
         RequestId = other.RequestId;
     }
     requests_.Add(other.requests_);
     if (other.unknown6_ != null)
     {
         if (unknown6_ == null)
         {
             unknown6_ = new global::PokemonGoDesktop.API.Proto.Unknown6();
         }
         Unknown6.MergeFrom(other.Unknown6);
     }
     if (other.Latitude != 0D)
     {
         Latitude = other.Latitude;
     }
     if (other.Longitude != 0D)
     {
         Longitude = other.Longitude;
     }
     if (other.Altitude != 0D)
     {
         Altitude = other.Altitude;
     }
     if (other.authInfo_ != null)
     {
         if (authInfo_ == null)
         {
             authInfo_ = new global::PokemonGoDesktop.API.Proto.RequestEnvelope.Types.AuthInfo();
         }
         AuthInfo.MergeFrom(other.AuthInfo);
     }
     if (other.authTicket_ != null)
     {
         if (authTicket_ == null)
         {
             authTicket_ = new global::PokemonGoDesktop.API.Proto.AuthTicket();
         }
         AuthTicket.MergeFrom(other.AuthTicket);
     }
     if (other.Unknown12 != 0L)
     {
         Unknown12 = other.Unknown12;
     }
 }
 public void MergeFrom(ResponseEnvelope other)
 {
     if (other == null)
     {
         return;
     }
     if (other.StatusCode != 0)
     {
         StatusCode = other.StatusCode;
     }
     if (other.RequestId != 0UL)
     {
         RequestId = other.RequestId;
     }
     if (other.ApiUrl.Length != 0)
     {
         ApiUrl = other.ApiUrl;
     }
     if (other.unknown6_ != null)
     {
         if (unknown6_ == null)
         {
             unknown6_ = new global::PokemonGoDesktop.API.Proto.Unknown6Response();
         }
         Unknown6.MergeFrom(other.Unknown6);
     }
     if (other.authTicket_ != null)
     {
         if (authTicket_ == null)
         {
             authTicket_ = new global::PokemonGoDesktop.API.Proto.AuthTicket();
         }
         AuthTicket.MergeFrom(other.AuthTicket);
     }
     returns_.Add(other.returns_);
     if (other.Error.Length != 0)
     {
         Error = other.Error;
     }
 }