SchemaModelViewerControllerBase.GetChildren Method
Returns the list of child nodes for the specified parent node.
Namespace: Microsoft.VisualStudio.Data.Schema.Package.Project.SchemaModelViewer
Assembly: Microsoft.VisualStudio.Data.Schema.Package (in Microsoft.VisualStudio.Data.Schema.Package.dll)
Syntax
'Declaration
Public MustOverride Function GetChildren ( _
parent As ISchemaModelViewerNode _
) As IList(Of ISchemaModelViewerNode)
public abstract IList<ISchemaModelViewerNode> GetChildren(
ISchemaModelViewerNode parent
)
public:
virtual IList<ISchemaModelViewerNode^>^ GetChildren(
ISchemaModelViewerNode^ parent
) abstract
abstract GetChildren :
parent:ISchemaModelViewerNode -> IList<ISchemaModelViewerNode>
public abstract function GetChildren(
parent : ISchemaModelViewerNode
) : IList<ISchemaModelViewerNode>
Parameters
- parent
Type: Microsoft.VisualStudio.Data.Schema.Package.Project.SchemaModelViewer.ISchemaModelViewerNode
Parent node for which to get children.
Return Value
Type: System.Collections.Generic.IList<ISchemaModelViewerNode>
Non-null list of children (the list can be empty).
Implements
ISchemaModelViewerController.GetChildren(ISchemaModelViewerNode)
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
SchemaModelViewerControllerBase Class
Microsoft.VisualStudio.Data.Schema.Package.Project.SchemaModelViewer Namespace