CatalogNode.QueryParents Method

Returns the parents of this node. This function will call the web service.

Namespace:  Microsoft.TeamFoundation.Framework.Server
Assembly:  Microsoft.TeamFoundation.Framework.Server (in Microsoft.TeamFoundation.Framework.Server.dll)

Syntax

'Declaration
Public Function QueryParents ( _
    requestContext As TeamFoundationRequestContext, _
    resourceTypeFilters As IEnumerable(Of Guid), _
    recurseToRoot As Boolean, _
    queryOptions As CatalogQueryOptions _
) As List(Of CatalogNode)
public List<CatalogNode> QueryParents(
    TeamFoundationRequestContext requestContext,
    IEnumerable<Guid> resourceTypeFilters,
    bool recurseToRoot,
    CatalogQueryOptions queryOptions
)
public:
List<CatalogNode^>^ QueryParents(
    TeamFoundationRequestContext^ requestContext, 
    IEnumerable<Guid>^ resourceTypeFilters, 
    bool recurseToRoot, 
    CatalogQueryOptions queryOptions
)
member QueryParents : 
        requestContext:TeamFoundationRequestContext * 
        resourceTypeFilters:IEnumerable<Guid> * 
        recurseToRoot:bool * 
        queryOptions:CatalogQueryOptions -> List<CatalogNode> 
public function QueryParents(
    requestContext : TeamFoundationRequestContext, 
    resourceTypeFilters : IEnumerable<Guid>, 
    recurseToRoot : boolean, 
    queryOptions : CatalogQueryOptions
) : List<CatalogNode>

Parameters

  • recurseToRoot
    Type: System.Boolean

    If true, this query will retrieve all parent nodes until the root. If it is false, it will only retrieve the direct parent of this node.

  • queryOptions
    Type: Microsoft.TeamFoundation.Framework.Common.CatalogQueryOptions

    If ExpandDependencies is specified, the Dependencies property on nodes will contain the nodes they depend on. If IncludeParents is specified, the ParentNode property on the CatalogNode will contain the parent node. Leaving a given option will result in the returned catalog nodes to have null for that value. Extra data should only be retrieved if it is needed, because computing and sending information can be expensive.

Return Value

Type: System.Collections.Generic.List<CatalogNode>
The parent nodes of this node.

.NET Framework Security

See Also

Reference

CatalogNode Class

Microsoft.TeamFoundation.Framework.Server Namespace