Méthode ISyncFilter.IsIdentical
En cas de substitution dans une classe dérivée, indique si le filtre spécifié est identique à ce filtre.
Espace de noms: Microsoft.Synchronization
Assembly: Microsoft.Synchronization (dans microsoft.synchronization.dll)
Syntaxe
'Déclaration
Function IsIdentical ( _
otherFilter As ISyncFilter _
) As Boolean
'Utilisation
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
Paramètres
- otherFilter
Filtre à comparer à ce filtre.
Valeur de retour
true lorsque otherFilter est identique à ce filtre. Sinon, false.
Exemple
L'exemple suivant vérifie si le filtre est identique à l'autre filtre en vérifiant si les données de filtre sont égales à celles de l'autre filtre.
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);
}
Voir aussi
Référence
Interface ISyncFilter
Membres ISyncFilter
Espace de noms Microsoft.Synchronization