Partager via


DetermineLocalityCallback, délégué

Remarque : cette API est maintenant obsolète.

En déterminant la localité pour un type de différence donné et quittée/droite les chaînes.

Espace de noms :  Microsoft.VisualStudio.Text.Differencing
Assembly :  Microsoft.VisualStudio.Text.Data (dans Microsoft.VisualStudio.Text.Data.dll)

Syntaxe

'Déclaration
<ObsoleteAttribute("Methods that use this callback are now deprecated, and instances of this callback will not be used.")> _
Public Delegate Function DetermineLocalityCallback ( _
    differenceType As StringDifferenceTypes, _
    leftStrings As IList(Of String), _
    rightStrings As IList(Of String) _
) As Nullable(Of Integer)
[ObsoleteAttribute("Methods that use this callback are now deprecated, and instances of this callback will not be used.")]
public delegate Nullable<int> DetermineLocalityCallback(
    StringDifferenceTypes differenceType,
    IList<string> leftStrings,
    IList<string> rightStrings
)
[ObsoleteAttribute(L"Methods that use this callback are now deprecated, and instances of this callback will not be used.")]
public delegate Nullable<int> DetermineLocalityCallback(
    StringDifferenceTypes differenceType, 
    IList<String^>^ leftStrings, 
    IList<String^>^ rightStrings
)
[<ObsoleteAttribute("Methods that use this callback are now deprecated, and instances of this callback will not be used.")>]
type DetermineLocalityCallback = 
    delegate of  
        differenceType:StringDifferenceTypes * 
        leftStrings:IList<string> * 
        rightStrings:IList<string> -> Nullable<int>
JScript ne prend pas en charge les délégués.

Paramètres

  • leftStrings
    Type : IList<String>

    Texte gauche, décomposé en une liste de chaînes.

  • rightStrings
    Type : IList<String>

    Texte droit, décomposé en une liste de chaînes.

Valeur de retour

Type : Nullable<Int32>
Localité, si vous le souhaitez, ou nullune référence null (Nothing en Visual Basic) à revenir à la localité par défaut.

Voir aussi

Référence

Microsoft.VisualStudio.Text.Differencing, espace de noms