CodeClass2.FullName 属性
获取此代码类文件的完整路径和名称。
命名空间: EnvDTE80
程序集: EnvDTE80(在 EnvDTE80.dll 中)
语法
声明
ReadOnly Property FullName As String
string FullName { get; }
property String^ FullName {
String^ get ();
}
abstract FullName : string with get
function get FullName () : String
属性值
类型:String
表示代码类文件的完整路径和名称的字符串。
备注
FullName 属性在一些 Visual Studio 版本中被称为 FileName 属性。
备注
在进行某些类型的编辑之后,代码模型元素(如类、结构、函数、特性、委托等)的值可能是非确定性的,这意味着不能指望它们的值总是保持不变。有关更多信息,请参见 使用代码模型查找代码 (Visual Basic) 中的“代码模型元素的值可能会更改”一节。
示例
[C#]
public void CodeClass2FullnameExample(DTE2 dte2)
{
// Before running this example, open a code document from a project
// and place the insertion point within a class definition.
try
{ // Get the CodeClass2 at the insertion point.
TextSelection sel =
(TextSelection)dte2.ActiveDocument.Selection;
CodeClass2 cls = (CodeClass2)sel.ActivePoint.get_CodeElement(
vsCMElement.vsCMElementClass);
// Show the full name of the CodeClass.
MessageBox.Show(cls.FullName);
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关详细信息,请参阅通过部分受信任的代码使用库。