CodeClass2.Namespace 屬性
取得 CodeNamespace 物件,定義類別的父命名空間。
命名空間: EnvDTE80
組件: EnvDTE80 (在 EnvDTE80.dll 中)
語法
'宣告
ReadOnly Property Namespace As CodeNamespace
CodeNamespace Namespace { get; }
property CodeNamespace^ Namespace {
CodeNamespace^ get ();
}
abstract Namespace : CodeNamespace
function get Namespace () : CodeNamespace
屬性值
型別:EnvDTE.CodeNamespace
CodeNamespace 物件。
備註
針對宣告於檔案中最上層的型別,Namespace 屬性會傳回 Nothing 或 nullNull 參照 (即 Visual Basic 中的 Nothing)。 針對預設命名空間,或是全域命名空間。
注意事項 |
---|
在特定類型的編輯之後,程式碼模型項目 (例如類別、結構、函式、屬性、委派等) 的值可能不具決定性,表示其值不一定維持相同。如需詳細資訊,請參閱使用程式碼模型探索程式碼 (Visual Basic) 的<程式碼模型項目值可以變更>一節。 |
範例
[Visual Basic]
Sub NamespaceExample(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 CodeClass = _
CType(sel.ActivePoint.CodeElement( _
vsCMElement.vsCMElementClass), CodeClass)
If IsNothing(cls.Namespace) = False Then
MsgBox(cls.Name & " belongs to the " & _
cls.Namespace.Name & " namespace.")
Else
MsgBox(cls.Name & " doesn't belong to a namespace.")
End If
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
[C#]
public void NamespaceExample(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;
CodeClass cls =
(CodeClass)sel.ActivePoint.get_CodeElement(
vsCMElement.vsCMElementClass);
if (cls.Namespace != null)
MessageBox.Show(cls.Name + " belongs to the " +
cls.Namespace.Name + " namespace.");
else
MessageBox.Show(cls.Name +
" doesn't belong to a namespace.");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。