CodeAttribute2.Children 属性
获取此代码构造中包含的对象的集合。
命名空间: EnvDTE80
程序集: EnvDTE80(在 EnvDTE80.dll 中)
声明
ReadOnly Property Children As CodeElements
CodeElements Children { get; }
property CodeElements^ Children {
CodeElements^ get ();
}
abstract Children : CodeElements
function get Children () : CodeElements
类型:EnvDTE.CodeElements
返回 CodeElements 集合。
如果对象没有子级,则返回 Nothing 或 nullnull 引用(在 Visual Basic 中为 Nothing)。
此属性主要由 Visual C++ 使用。 Children 属性返回可从代码元素返回的每个对象。 例如,类返回成员、基、实现的接口、特性、注释等。
若要循环访问命名空间或类型(类、结构、接口等)的成员,必须使用查询接口 (QI) 或将 CodeElement 对象强制转换为 CodeNamespace 对象,然后使用 Members 属性。
Children 属性返回可通过此代码元素引用的所有相关 CodeElement2 对象的集合。 例如,对于 CodeClass2 对象,这可能包括类的元数据代码元素(可能还有 Visual C++ declspec),以及基于 Visual C++ 中的特性化编程功能的外供代码、模板参数等。 CodeFunction2 对象可能包括它的所有参数、基于特性化编程功能的外供参数等。
Children 属性可能返回 Nothing 或 null ,这取决于具体的对象和语言。 Visual Studio 中无需支持此行为。
下面的示例在当前类中创建一个新的命名空间和特性,并列出该特性的一些属性。
Sub Children2Example(ByVal dte As DTE2)
' Before running this example, open a code page of a project
' and place the insertion point inside a namespace definition.
Try
' Retrieve the CodeNamespace at the insertion point.
Dim sel As TextSelection = _
CType(dte.ActiveDocument.Selection, TextSelection)
Dim spc As CodeNamespace = _
CType(sel.ActivePoint.CodeElement( _
vsCMElement.vsCMElementNamespace), CodeNamespace)
' Find the namespace's children.
Dim children As String
Dim elem As CodeElement
For Each elem In spc.Children
children &= elem.Name & vbCrLf
Next
MsgBox(spc.Name & " has the following child code elements:" & _
vbCrLf & vbCrLf & children)
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
public void Children2Example(DTE2 dte)
{
// Before running this example, open a code document from a project
// and place the insertion point inside a namespace definition.
try
{
// Retrieve the CodeNamespace at the insertion point.
TextSelection sel =
(TextSelection)dte.ActiveDocument.Selection;
CodeNamespace spc =
(CodeNamespace)sel.ActivePoint.get_CodeElement(
vsCMElement.vsCMElementNamespace);
// Find the namespace's children.
string children = "";
foreach (CodeElement elem in spc.Children)
children += elem.Name + "\r\n";
MessageBox.Show(spc.Name +
" has the following child code elements:" + "\r\n\r\n" +
children);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。