다음을 통해 공유


ISyncFilter.IsIdentical 메서드

파생 클래스에서 재정의되면 지정된 필터가 이 필터와 같은지 여부를 나타냅니다.

네임스페이스: Microsoft.Synchronization
어셈블리: microsoft.synchronization.dll의 Microsoft.Synchronization

구문

‘선언
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 네임스페이스