ReportExpression.Equality Operator

Definition

Tests the equality of two expressions.

Overloads

Equality(String, ReportExpression)

Tests the equality of two expressions.

Equality(ReportExpression, ReportExpression)

Tests the equality of two expressions.

Equality(ReportExpression, String)

Tests the equality of two expressions.

Equality(String, ReportExpression)

Tests the equality of two expressions.

public:
 static bool operator ==(System::String ^ left, Microsoft::ReportingServices::RdlObjectModel::ReportExpression right);
public static bool operator == (string left, Microsoft.ReportingServices.RdlObjectModel.ReportExpression right);
static member ( = ) : string * Microsoft.ReportingServices.RdlObjectModel.ReportExpression -> bool
Public Shared Operator == (left As String, right As ReportExpression) As Boolean

Parameters

left
String

An expression string.

Returns

True if the two expressions are equal; otherwise, false.

Remarks

The equivalent method for this operator is <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression.Equals%28System.String%2CMicrosoft.ReportingServices.RdlObjectModel.ReportExpression%29?displayProperty=fullName>

Applies to

Equality(ReportExpression, ReportExpression)

Tests the equality of two expressions.

public:
 static bool operator ==(Microsoft::ReportingServices::RdlObjectModel::ReportExpression left, Microsoft::ReportingServices::RdlObjectModel::ReportExpression right);
public static bool operator == (Microsoft.ReportingServices.RdlObjectModel.ReportExpression left, Microsoft.ReportingServices.RdlObjectModel.ReportExpression right);
static member ( = ) : Microsoft.ReportingServices.RdlObjectModel.ReportExpression * Microsoft.ReportingServices.RdlObjectModel.ReportExpression -> bool
Public Shared Operator == (left As ReportExpression, right As ReportExpression) As Boolean

Parameters

Returns

True if the two expressions are equal; otherwise, false.

Remarks

The equivalent method for this operator is <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression.Equals%28Microsoft.ReportingServices.RdlObjectModel.ReportExpression%2CMicrosoft.ReportingServices.RdlObjectModel.ReportExpression%29?displayProperty=fullName>

Applies to

Equality(ReportExpression, String)

Tests the equality of two expressions.

public:
 static bool operator ==(Microsoft::ReportingServices::RdlObjectModel::ReportExpression left, System::String ^ right);
public static bool operator == (Microsoft.ReportingServices.RdlObjectModel.ReportExpression left, string right);
static member ( = ) : Microsoft.ReportingServices.RdlObjectModel.ReportExpression * string -> bool
Public Shared Operator == (left As ReportExpression, right As String) As Boolean

Parameters

right
String

An expression string.

Returns

True if the two expressions are equal; otherwise, false.

Remarks

The equivalent method for this operator is <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression.Equals%28Microsoft.ReportingServices.RdlObjectModel.ReportExpression%2CSystem.String%29?displayProperty=fullName>

Applies to