Google.Api.Ads.AdWords.Util.Shopping.v201702.ProductPartitionNode.HasChild(ProductDimension)

Here are the examples of the csharp api class Google.Api.Ads.AdWords.Util.Shopping.v201702.ProductPartitionNode.HasChild(ProductDimension) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: googleads-dotnet-lib
Source File: ProductPartitionNode.cs
public ProductPartitionNode GetChild(ProductDimension dimension) {
      if (!HasChild(dimension)) {
        throw new ArgumentException(string.Format(
            ShoppingMessages.NoChildNodeFoundForDimension, dimension));
      }
      return children[dimension];
    }