Compartilhar via


Delegado DetermineLocalityCallback

Observação: esta API agora é obsoleta.

Determinando a localidade para uma seqüências de diferença de determinado tipo e da esquerda/direita.

Namespace:  Microsoft.VisualStudio.Text.Differencing
Assembly:  Microsoft.VisualStudio.Text.Data (em Microsoft.VisualStudio.Text.Data.dll)

Sintaxe

'Declaração
<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 não oferece suporte a delegados.

Parâmetros

  • leftStrings
    Tipo: IList<String>

    O texto à esquerda, decomposto em uma lista de seqüências de caracteres.

  • rightStrings
    Tipo: IList<String>

    O texto à direita, decomposto em uma lista de seqüências de caracteres.

Valor de retorno

Tipo: Nullable<Int32>
A localidade, se desejado, ou nulluma referência nula (Nothing no Visual Basic) retorne para a localidade padrão.

Consulte também

Referência

Namespace Microsoft.VisualStudio.Text.Differencing