Właściwość CodeClass2.Bases —
Pobiera zestaw klas, z których pochodzi ten kod klasy.
Przestrzeń nazw: EnvDTE80
Zestaw: EnvDTE80 (w EnvDTE80.dll)
Składnia
'Deklaracja
ReadOnly Property Bases As CodeElements
CodeElements Bases { get; }
property CodeElements^ Bases {
CodeElements^ get ();
}
abstract Bases : CodeElements with get
function get Bases () : CodeElements
Wartość właściwości
Typ: CodeElements
A CodeElements kolekcji.
Uwagi
Podstawy są typy super CodeElements.Dla języka Visual Basic i Visual C#, zawsze istnieje tylko jeden element w kolekcji, z wyjątkiem przypadków, gdy typ kodu jest CodeInterface lub CodeInterface2.
[!UWAGA]
Wartości elementów modelu kodu, takich jak klasy, strukturach, funkcje, atrybuty, delegatów i tak dalej mogą być deterministyczny po dokonaniu niektórych rodzajów modyfikacji, co oznacza, że ich wartości nie mogą być powoływane do zawsze pozostają takie same.Aby uzyskać więcej informacji, zobacz sekcję wartości elementu modelu kod można zmienić w Odnajdowanie kodu za pomocą modelu kodu (Visual Basic).
Przykłady
[Visual Basic]
Sub BasesExample(ByVal dte As DTE2)
' Before running this example, open a code document from a project
' and place the insertion point inside a class definition.
Try
' Retrieve the CodeClass at the insertion point.
Dim sel As TextSelection = _
CType(dte.ActiveDocument.Selection, TextSelection)
Dim cls As CodeClass2 = _
CType(sel.ActivePoint.CodeElement( _
vsCMElement.vsCMElementClass), CodeClass2)
' Enumerate the CodeClass's bases.
Dim bases As String = ""
Dim elem As CodeElement2
For Each elem In cls.Bases
bases &= elem.FullName & vbCrLf
Next
MsgBox(cls.Name & " has the following bases:" & _
vbCrLf & vbCrLf & bases)
Catch ex As System.Exception
MsgBox(ex.Message)
End Try
End Sub
[C#]
public void BasesExample(DTE2 dte)
{
// Before running this example, open a code document from a project
// and place the insertion point inside a class definition.
try
{
// Retrieve the CodeClass at the insertion point.
TextSelection sel =
(TextSelection)dte.ActiveDocument.Selection;
CodeClass2 cls =
(CodeClass)sel.ActivePoint.get_CodeElement2(
vsCMElement.vsCMElementClass);
// Enumerate the CodeClass's bases.
string bases = "";
foreach (CodeElement2 elem in cls.Bases)
{
bases += elem.FullName + Environment.NewLine;
}
MessageBox.Show(cls.Name + " has the following bases:" +
Environment.NewLine + Environment.NewLine + bases);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
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.
Zobacz też
Informacje
Inne zasoby
Porady: kompilowanie i uruchamianie kodu modelu obiektów automatyzacji — przykłady