ISyncFilter.IsIdentical 方法
在派生类中重写时,指示指定筛选器是否与此筛选器相同。
命名空间: Microsoft.Synchronization
程序集: Microsoft.Synchronization(在 microsoft.synchronization.dll 中)
语法
声明
Function IsIdentical ( _
otherFilter As ISyncFilter _
) As Boolean
用法
Dim instance As ISyncFilter
Dim otherFilter As ISyncFilter
Dim returnValue As Boolean
returnValue = instance.IsIdentical(otherFilter)
bool IsIdentical (
ISyncFilter otherFilter
)
bool IsIdentical (
ISyncFilter^ otherFilter
)
boolean IsIdentical (
ISyncFilter otherFilter
)
function IsIdentical (
otherFilter : ISyncFilter
) : boolean
参数
- otherFilter
要与此筛选器进行比较的筛选器。
返回值
如果 otherFilter 与此筛选器相同,则为 true。否则为 false。
示例
下面的示例通过检查筛选器数据是否与另一个筛选器的数据相等,以检查该筛选器是否与另一个筛选器完全相同。
Public Function IsIdentical(ByVal otherFilter As ISyncFilter) As Boolean Implements ISyncFilter.IsIdentical
Return _filter.Equals(DirectCast(otherFilter, AddressFilter).Filter)
End Function
public bool IsIdentical(ISyncFilter otherFilter)
{
return _filter.Equals(((AddressFilter)otherFilter).Filter);
}
请参阅
参考
ISyncFilter 接口
ISyncFilter 成员
Microsoft.Synchronization 命名空间