Metoda References.Find —
Przeszukuje odniesienia w projekcie dla obiektu, który został określony Identity.
Przestrzeń nazw: VSLangProj
Zestaw: VSLangProj (w VSLangProj.dll)
Składnia
'Deklaracja
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
Parametry
Wartość zwracana
Typ: VSLangProj.Reference
Zwraca Reference obiektu.
Uwagi
Każdy Reference obiekt w References Kolekcja Identity.Find Metody wyszukiwania i zwraca Reference obiekt o określonym Identity.
Przykłady
' 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
Zabezpieczenia programu .NET Framework
- Pełne zaufanie do bezpośredniego wywołującego. Tego elementu członkowskiego nie można używać w kodzie częściowo zaufanym. Aby uzyskać więcej informacji, zobacz Używanie bibliotek pochodzących z częściowo zaufanego kodu.