Show / Hide Table of Contents

Class DimensionExpression

Used to express a dimension which is the result of a formula of multiple dimensions. Example usages: 1) lower_case(dimension) 2) concatenate(dimension1, symbol, dimension2).

Inheritance
System.Object
DimensionExpression
Implements
Google.Protobuf.IMessage<DimensionExpression>
System.IEquatable<DimensionExpression>
Google.Protobuf.IDeepCloneable<DimensionExpression>
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 DimensionExpression : IMessage<DimensionExpression>, IEquatable<DimensionExpression>, IDeepCloneable<DimensionExpression>, IBufferMessage, IMessage

Constructors

DimensionExpression()

Declaration
public DimensionExpression()

DimensionExpression(DimensionExpression)

Declaration
public DimensionExpression(DimensionExpression other)
Parameters
Type Name Description
DimensionExpression other

Properties

Concatenate

Used to combine dimension values to a single dimension. For example, dimension "country, city": concatenate(country, ", ", city).

Declaration
public DimensionExpression.Types.ConcatenateExpression Concatenate { get; set; }
Property Value
Type Description
DimensionExpression.Types.ConcatenateExpression

LowerCase

Used to convert a dimension value to lower case.

Declaration
public DimensionExpression.Types.CaseExpression LowerCase { get; set; }
Property Value
Type Description
DimensionExpression.Types.CaseExpression

OneExpressionCase

Declaration
public DimensionExpression.OneExpressionOneofCase OneExpressionCase { get; }
Property Value
Type Description
DimensionExpression.OneExpressionOneofCase

UpperCase

Used to convert a dimension value to upper case.

Declaration
public DimensionExpression.Types.CaseExpression UpperCase { get; set; }
Property Value
Type Description
DimensionExpression.Types.CaseExpression
In This Article
Back to top