Compartilhar via


Método References.Find

Procura as referências em um projeto para um objeto que tenha especificado Identity.

Namespace:  VSLangProj
Assembly:  VSLangProj (em VSLangProj.dll)

Sintaxe

'Declaração
Function Find ( _
    bstrIdentity As String _
) As Reference
Reference Find(
    string bstrIdentity
)
Reference^ Find(
    [InAttribute] String^ bstrIdentity
)
abstract Find : 
        bstrIdentity:string -> Reference 
function Find(
    bstrIdentity : String
) : Reference

Parâmetros

Valor de retorno

Tipo: VSLangProj.Reference
Retorna um Reference objeto.

Comentários

Cada Reference de objeto na References coleção tem um Identity. O Find método localiza e retorna o Reference o objeto com o especificado Identity.

Exemplos

' Macro Editor
Imports VSLangProj
Public Sub FindExample()
   ' First project is a Visual Basic or C# project.
   Dim theVSProject As VSProject = _
      CType(DTE.Solution.Projects.Item(1).Object, VSProject)
        
   Dim refs As References = theVSProject.References
   Dim firstIdentity As String = refs.Item(1).Identity
   Dim firstRef As Reference = refs.Find(firstIdentity)
   ' Are they the same object?
   Dim isSame As Boolean = (firstRef.Identity = refs.Item(1).Identity)
   MsgBox("Are they the same? " & isSame.ToString())
End Sub   

Segurança do .NET Framework

Consulte também

Referência

References Interface

Namespace VSLangProj