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

                case 18: {
                    global::Google.Ads.GoogleAds.V10.Resources.BillingSetup subBuilder = new global::Google.Ads.GoogleAds.V10.Resources.BillingSetup();
                    if (operationCase_ == OperationOneofCase.Create)
                    {
                        subBuilder.MergeFrom(Create);
                    }
                    input.ReadMessage(subBuilder);
                    Create = subBuilder;
                    break;
                }
                }
            }
    #endif
        }
Example #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: {
                    Remove = input.ReadString();
                    break;
                }

                case 18: {
                    global::Google.Ads.GoogleAds.V10.Resources.BillingSetup subBuilder = new global::Google.Ads.GoogleAds.V10.Resources.BillingSetup();
                    if (operationCase_ == OperationOneofCase.Create)
                    {
                        subBuilder.MergeFrom(Create);
                    }
                    input.ReadMessage(subBuilder);
                    Create = subBuilder;
                    break;
                }
                }
            }
        }
Example #3
0
        public void MergeFrom(BillingSetupOperation other)
        {
            if (other == null)
            {
                return;
            }
            switch (other.OperationCase)
            {
            case OperationOneofCase.Create:
                if (Create == null)
                {
                    Create = new global::Google.Ads.GoogleAds.V10.Resources.BillingSetup();
                }
                Create.MergeFrom(other.Create);
                break;

            case OperationOneofCase.Remove:
                Remove = other.Remove;
                break;
            }

            _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
        }