Właściwość CodeClass2.IsShared —
Pobiera lub ustawia stan udostępnionego (statyczny) klasy.
Przestrzeń nazw: EnvDTE80
Zestaw: EnvDTE80 (w EnvDTE80.dll)
Składnia
'Deklaracja
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)
Wartość właściwości
Typ: Boolean
true Jeśli klasa jest udostępniony (nie statyczne), w przeciwnym razie false.
[!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 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);
}
}
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