Exemple #1
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: {
                            ColumnSpecId = input.ReadString();
                            break;
                        }

                        case 18: {
                            if (correlationStats_ == null)
                            {
                                CorrelationStats = new global::Google.Cloud.Automl.V1Beta1.CorrelationStats();
                            }
                            input.ReadMessage(CorrelationStats);
                            break;
                        }
                        }
                    }
        #endif
                }
Exemple #2
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: {
                            ColumnSpecId = input.ReadString();
                            break;
                        }

                        case 18: {
                            if (correlationStats_ == null)
                            {
                                CorrelationStats = new global::Google.Cloud.Automl.V1Beta1.CorrelationStats();
                            }
                            input.ReadMessage(CorrelationStats);
                            break;
                        }
                        }
                    }
                }
Exemple #3
0
 public void MergeFrom(CorrelatedColumn other)
 {
     if (other == null)
     {
         return;
     }
     if (other.ColumnSpecId.Length != 0)
     {
         ColumnSpecId = other.ColumnSpecId;
     }
     if (other.correlationStats_ != null)
     {
         if (correlationStats_ == null)
         {
             CorrelationStats = new global::Google.Cloud.Automl.V1Beta1.CorrelationStats();
         }
         CorrelationStats.MergeFrom(other.CorrelationStats);
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }