Condividi tramite


Proprietà CodeNamespace.Members

Aggiornamento: novembre 2007

Ottiene un insieme di elementi contenuti nell'elemento CodeNamespace.

Spazio dei nomi:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Sintassi

ReadOnly Property Members As CodeElements

Dim instance As CodeNamespace
Dim value As CodeElements

value = instance.Members
CodeElements Members { get; }
property CodeElements^ Members {
    CodeElements^ get ();
}
function get Members () : CodeElements

Valore proprietà

Tipo: EnvDTE.CodeElements

Insieme di CodeElements.

Note

Quando il tipo di codice corrisponde a vsCMElementDelegate, il metodo Members ha esito negativo poiché i delegati non dispongono di membri nel codice sorgente. Vengono forniti dal compilatore e dal .NET Framework.

Nota:

I valori degli elementi del modello di codice, quali classi, strutture, funzioni, attributi, delegati e così via, possono non essere deterministici dopo alcuni tipi di modifiche. Ciò significa che non si può fare affidamento sulla stabilità di tali valori. Per ulteriori informazioni, vedere la sezione Possibile modifica dei valori degli elementi del modello di codice in Individuazione di codice mediante il modello di codice (Visual Basic).

Esempi

Sub MembersExample(ByVal dte As DTE2)

    ' Before running this example, open a code document from a project
    ' and place the insertion point inside a namespace definition.
    Try
        ' Retrieve the CodeNamespace at the insertion point.
        Dim sel As TextSelection = _
            CType(dte.ActiveDocument.Selection, TextSelection)
        Dim spc As CodeNamespace = _
            CType(sel.ActivePoint.CodeElement( _
            vsCMElement.vsCMElementNamespace), CodeNamespace)

        ' Display the namespace members.
        Dim members As String
        Dim elem As CodeElement
        For Each elem In spc.Members
            members &= elem.Name & vbCrLf
        Next

        MsgBox(spc.Name & " has the following members:" & _
            vbCrLf & vbCrLf & members)
    Catch ex As Exception
        MsgBox(ex.Message)
    End Try

End Sub
public void MembersExample(DTE2 dte)
{
    // Before running this example, open a code document from a project
    // and place the insertion point inside a namespace definition.
    try
    {
        // Retrieve the CodeNamespace at the insertion point.
        TextSelection sel = _
            (TextSelection)dte.ActiveDocument.Selection;
        CodeNamespace spc = _
            (CodeNamespace)sel.ActivePoint.get_CodeElement( _
            vsCMElement.vsCMElementNamespace);

        // Display the namespace members.
        string members = "";
        foreach (CodeElement elem in spc.Members)
        {
            members += elem.Name + Environment.NewLine;
        }

        MessageBox.Show(spc.Name + " has the following members:" + _
            Environment.NewLine + Environment.NewLine + members);
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

Autorizzazioni

Vedere anche

Riferimenti

CodeNamespace Interfaccia

Membri CodeNamespace

Spazio dei nomi EnvDTE

Altre risorse

Procedura: compilare ed eseguire gli esempi di codice del modello a oggetti di automazione

Individuazione di codice mediante il modello di codice (Visual Basic)

Individuazione di codice mediante il modello di codice (Visual C#)