この API は、SQL Server 2012 インフラストラクチャをサポートします。独自に作成したコードから直接使用するためのものではありません。
レポート オブジェクトのセマンティックが同じであるかどうかを比較します。
名前空間: Microsoft.ReportingServices.RdlObjectModel
アセンブリ: Microsoft.ReportingServices.Designer.Controls (Microsoft.ReportingServices.Designer.Controls.dll)
構文
'宣言
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
'使用
Dim x As IList(Of T)
Dim y As IList(Of T)
Dim visitedList As ICollection(Of ReportObject)
Dim returnValue As Boolean
returnValue = ReportObject.SemanticCompare(x, _
y, visitedList)
protected static bool SemanticCompare<T>(
IList<T> x,
IList<T> y,
ICollection<ReportObject> visitedList
)
where T : ReportObject
protected:
generic<typename T>
where T : ReportObject
static bool SemanticCompare(
IList<T>^ x,
IList<T>^ y,
ICollection<ReportObject^>^ visitedList
)
static member SemanticCompare :
x:IList<'T> *
y:IList<'T> *
visitedList:ICollection<ReportObject> -> bool when 'T : ReportObject
JScript は汎用の型およびメソッドをサポートしていません。
型パラメーター
- T
レポート オブジェクトの種類。
パラメーター
- x
型: System.Collections.Generic.IList<T>
1 つ目のレポート オブジェクト。
- y
型: System.Collections.Generic.IList<T>
2 つ目のレポート オブジェクト。
- visitedList
型: System.Collections.Generic.ICollection<ReportObject>
レポート オブジェクトのコレクション。
戻り値
型: System.Boolean
レポート オブジェクトのセマンティックが同じである場合は true、異なる場合は false。