Show / Hide Table of Contents

Class DimensionExpression.Types.ConcatenateExpression

Used to combine dimension values to a single dimension.

Inheritance
System.Object
DimensionExpression.Types.ConcatenateExpression
Implements
Google.Protobuf.IMessage<DimensionExpression.Types.ConcatenateExpression>
System.IEquatable<DimensionExpression.Types.ConcatenateExpression>
Google.Protobuf.IDeepCloneable<DimensionExpression.Types.ConcatenateExpression>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
Namespace: Google.Analytics.Data.V1Beta
Assembly: Google.Analytics.Data.V1Beta.dll
Syntax
public sealed class ConcatenateExpression : IMessage<DimensionExpression.Types.ConcatenateExpression>, IEquatable<DimensionExpression.Types.ConcatenateExpression>, IDeepCloneable<DimensionExpression.Types.ConcatenateExpression>, IBufferMessage, IMessage

Constructors

ConcatenateExpression()

Declaration
public ConcatenateExpression()

ConcatenateExpression(DimensionExpression.Types.ConcatenateExpression)

Declaration
public ConcatenateExpression(DimensionExpression.Types.ConcatenateExpression other)
Parameters
Type Name Description
DimensionExpression.Types.ConcatenateExpression other

Properties

Delimiter

The delimiter placed between dimension names.

Delimiters are often single characters such as "|" or "," but can be longer strings. If a dimension value contains the delimiter, both will be present in response with no distinction. For example if dimension 1 value = "US,FR", dimension 2 value = "JP", and delimiter = ",", then the response will contain "US,FR,JP".

Declaration
public string Delimiter { get; set; }
Property Value
Type Description
System.String

DimensionNames

Names of dimensions. The names must refer back to names in the dimensions field of the request.

Declaration
public RepeatedField<string> DimensionNames { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<System.String>
In This Article
Back to top