CodeClass2.IsShared-Eigenschaft
Ruft den freigegebenen (statischen) Status der Klasse ab oder legt ihn fest.
Namespace: EnvDTE80
Assembly: EnvDTE80 (in EnvDTE80.dll)
Syntax
'Declaration
Property IsShared As Boolean
bool IsShared { get; set; }
property bool IsShared {
bool get ();
void set (bool value);
}
abstract IsShared : bool with get, set
function get IsShared () : boolean
function set IsShared (value : boolean)
Eigenschaftswert
Typ: System.Boolean
true , wenn die Klasse freigegeben (nicht statisch) ist, andernfalls false.
Hinweis |
---|
Die Werte von Codemodellelementen wie Klassen, Strukturen, Funktionen, Attributen, Delegaten usw. können nach bestimmten Bearbeitungsvorgängen nicht deterministisch sein, d. h., dass nicht mehr davon ausgegangen werden kann, dass ihre Werte immer unverändert bleiben.Weitere Informationen finden Sie im Abschnitt zum Änderungsverhalten von Codemodellelementwerten unter Ermitteln von Code über das Codemodell (Visual Basic). |
Beispiele
[Visual Basic]
Sub IsSharedExample(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)
' Display whether or not the class is shared.
If cls.IsShared Then
MsgBox("Class is shared")
Else
MsgBox("Class is not shared")
End If
Catch ex As System.Exception
MsgBox(ex.ToString)
End Try
End Sub
[C#]
public void IsSharedExample(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 = (CodeClass2)
sel.ActivePoint.get_CodeElement(vsCMElement.vsCMElementClass);
// Display whether or not the class is shared.
if (cls.IsShared)
{
MessageBox.Show("Class is shared");
}
else
{
MessageBox.Show("Class is not shared");
}
}
catch(System.Exception ex)
{
MessageBox.Show(ex.Message);
}
}
.NET Framework-Sicherheit
- Volle Vertrauenswürdigkeit für den unmittelbaren Aufrufer. Dieser Member kann von nur teilweise vertrauenswürdigem Code nicht verwendet werden. Weitere Informationen finden Sie unter Verwenden von Bibliotheken aus teilweise vertrauenswürdigem Code.
Siehe auch
Referenz
Weitere Ressourcen
Gewusst wie: Kompilieren und Ausführen der Codebeispiele für das Automatisierungsobjektmodell