Show / Hide Table of Contents

Class DimensionExpression.Types.ConcatenateExpression

Used to combine dimension values to a single dimension.

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

Constructors

ConcatenateExpression()

Declaration
public ConcatenateExpression()

ConcatenateExpression(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
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
RepeatedField<string>
In this article
Back to top Generated by DocFX