Esempio n. 1
0
        public void MergeFrom(pb::CodedInputStream input)
        {
            uint tag;

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    input.SkipLastField();
                    break;

                case 10: {
                    DebuggeeId = input.ReadString();
                    break;
                }

                case 18: {
                    if (breakpoint_ == null)
                    {
                        breakpoint_ = new global::Google.Cloud.Debugger.V2.Breakpoint();
                    }
                    input.ReadMessage(breakpoint_);
                    break;
                }
                }
            }
        }
        public void MergeFrom(pb::CodedInputStream input)
        {
            uint tag;

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
                    break;

                case 10: {
                    DebuggeeId = input.ReadString();
                    break;
                }

                case 18: {
                    if (breakpoint_ == null)
                    {
                        Breakpoint = new global::Google.Cloud.Debugger.V2.Breakpoint();
                    }
                    input.ReadMessage(Breakpoint);
                    break;
                }
                }
            }
        }
Esempio n. 3
0
 public void MergeFrom(UpdateActiveBreakpointRequest other)
 {
     if (other == null)
     {
         return;
     }
     if (other.DebuggeeId.Length != 0)
     {
         DebuggeeId = other.DebuggeeId;
     }
     if (other.breakpoint_ != null)
     {
         if (breakpoint_ == null)
         {
             breakpoint_ = new global::Google.Cloud.Debugger.V2.Breakpoint();
         }
         Breakpoint.MergeFrom(other.Breakpoint);
     }
 }
 public void MergeFrom(UpdateActiveBreakpointRequest other)
 {
     if (other == null)
     {
         return;
     }
     if (other.DebuggeeId.Length != 0)
     {
         DebuggeeId = other.DebuggeeId;
     }
     if (other.breakpoint_ != null)
     {
         if (breakpoint_ == null)
         {
             Breakpoint = new global::Google.Cloud.Debugger.V2.Breakpoint();
         }
         Breakpoint.MergeFrom(other.Breakpoint);
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }