ReportObject.SemanticCompare Método

Definición

Compara la semántica del objeto de informe.

Sobrecargas

SemanticCompare<T>(IList<T>, IList<T>, ICollection<ReportObject>)

Compara si la semántica del objeto de informe es la misma.

SemanticCompare<T>(T, T, ICollection<ReportObject>)

Compara si la semántica del objeto de informe es la misma.

SemanticCompare<T>(IList<T>, IList<T>, ICollection<ReportObject>)

Compara si la semántica del objeto de informe es la misma.

protected:
generic <typename T>
 where T : Microsoft::ReportingServices::RdlObjectModel::ReportObject static bool SemanticCompare(System::Collections::Generic::IList<T> ^ x, System::Collections::Generic::IList<T> ^ y, System::Collections::Generic::ICollection<Microsoft::ReportingServices::RdlObjectModel::ReportObject ^> ^ visitedList);
protected static bool SemanticCompare<T> (System.Collections.Generic.IList<T> x, System.Collections.Generic.IList<T> y, System.Collections.Generic.ICollection<Microsoft.ReportingServices.RdlObjectModel.ReportObject> visitedList) where T : Microsoft.ReportingServices.RdlObjectModel.ReportObject;
static member SemanticCompare : System.Collections.Generic.IList<'T (requires 'T :> Microsoft.ReportingServices.RdlObjectModel.ReportObject)> * System.Collections.Generic.IList<'T (requires 'T :> Microsoft.ReportingServices.RdlObjectModel.ReportObject)> * System.Collections.Generic.ICollection<Microsoft.ReportingServices.RdlObjectModel.ReportObject> -> bool (requires 'T :> Microsoft.ReportingServices.RdlObjectModel.ReportObject)
Protected Shared Function SemanticCompare(Of T As ReportObject) (x As IList(Of T), y As IList(Of T), visitedList As ICollection(Of ReportObject)) As Boolean

Parámetros de tipo

T

El tipo del objeto del informe.

Parámetros

x
IList<T>

Primer objeto del informe.

y
IList<T>

Segundo objeto de informe.

visitedList
ICollection<ReportObject>

Colección de objetos de informe.

Devoluciones

True si la semántica del objeto de informe es igual; de lo contrario, false.

Se aplica a

SemanticCompare<T>(T, T, ICollection<ReportObject>)

Compara si la semántica del objeto de informe es la misma.

protected:
generic <typename T>
 where T : Microsoft::ReportingServices::RdlObjectModel::ReportObject static bool SemanticCompare(T x, T y, System::Collections::Generic::ICollection<Microsoft::ReportingServices::RdlObjectModel::ReportObject ^> ^ visitedList);
protected static bool SemanticCompare<T> (T x, T y, System.Collections.Generic.ICollection<Microsoft.ReportingServices.RdlObjectModel.ReportObject> visitedList) where T : Microsoft.ReportingServices.RdlObjectModel.ReportObject;
static member SemanticCompare : 'T * 'T * System.Collections.Generic.ICollection<Microsoft.ReportingServices.RdlObjectModel.ReportObject> -> bool (requires 'T :> Microsoft.ReportingServices.RdlObjectModel.ReportObject)
Protected Shared Function SemanticCompare(Of T As ReportObject) (x As T, y As T, visitedList As ICollection(Of ReportObject)) As Boolean

Parámetros de tipo

T

El tipo del objeto del informe.

Parámetros

x
T

Primer objeto del informe.

y
T

Segundo objeto de informe.

visitedList
ICollection<ReportObject>

Colección de objetos de informe.

Devoluciones

True si la semántica del objeto de informe es igual; de lo contrario, false.

Se aplica a