Udostępnij za pośrednictwem


Metoda VCCodeModel.CodeElementFromFullName2 —

Pobiera zbiór elementów określonego kodu dla obiektu.Jest ona identyczna z CodeElementFromFullName, z tym, że podczas wyszukiwania ignoruje obszarów nazw.

Przestrzeń nazw:  Microsoft.VisualStudio.VCCodeModel
Zestaw:  Microsoft.VisualStudio.VCCodeModel (w Microsoft.VisualStudio.VCCodeModel.dll)

Składnia

'Deklaracja
Function CodeElementFromFullName2 ( _
    Name As String _
) As CodeElements
CodeElements CodeElementFromFullName2(
    string Name
)
CodeElements^ CodeElementFromFullName2(
    [InAttribute] String^ Name
)
abstract CodeElementFromFullName2 : 
        Name:string -> CodeElements
function CodeElementFromFullName2(
    Name : String
) : CodeElements

Parametry

  • Name
    Typ: String

    Wymagany.Pełna nazwa elementy do pobrania.

Wartość zwracana

Typ: CodeElements
Kolekcja CodeElements.

Przykłady

Biorąc pod uwagę następujący kod:

[Visual C++]
class X {};
namespace NS1 {
    class X {};
    namespace NS2 {
        class X {};
    }
}

a call to VCCodeModel.CodeElementFromFullName2("X") yields {X; NS1::X; NS1::NS2::X}.

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

VCCodeModel Interfejs

Przestrzeń nazw Microsoft.VisualStudio.VCCodeModel