Example #1
0
    void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input)
    {
        uint tag;

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

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

            case 18: {
                CurLocation = input.ReadString();
                break;
            }

            case 26: {
                DstLocation = input.ReadString();
                break;
            }

            case 32: {
                DstType = (global::RabbitMsg.Types.DstType)input.ReadEnum();
                break;
            }
            }
        }
    }
Example #2
0
    public void MergeFrom(pb::CodedInputStream input)
    {
  #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
        input.ReadRawMessage(this);
  #else
        uint tag;
        while ((tag = input.ReadTag()) != 0)
        {
            switch (tag)
            {
            default:
                _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
                break;

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

            case 18: {
                CurLocation = input.ReadString();
                break;
            }

            case 26: {
                DstLocation = input.ReadString();
                break;
            }

            case 32: {
                DstType = (global::RabbitMsg.Types.DstType)input.ReadEnum();
                break;
            }
            }
        }
  #endif
    }
Example #3
0
 public void MergeFrom(RabbitMsg other)
 {
     if (other == null)
     {
         return;
     }
     if (other.FileHash.Length != 0)
     {
         FileHash = other.FileHash;
     }
     if (other.CurLocation.Length != 0)
     {
         CurLocation = other.CurLocation;
     }
     if (other.DstLocation.Length != 0)
     {
         DstLocation = other.DstLocation;
     }
     if (other.DstType != global::RabbitMsg.Types.DstType.Minio)
     {
         DstType = other.DstType;
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }