Share via


ScopeManager.GetChildScopes Method

 

Retrieves child scopes.

Namespace:   Microsoft.Workflow.Client
Assembly:  Microsoft.Workflow.Client (in Microsoft.Workflow.Client.dll)

Overload List

Name Description
System_CAPS_pubmethod GetChildScopes()

Retrieves all child scopes

System_CAPS_pubmethod GetChildScopes(Int32, Int32)

Retrieves specified subset of child scopes.

System_CAPS_pubmethod GetChildScopes(Int32, Int32, ScopeStatus)

Retrieves specified subset of child scopes that are in specififed state.

See Also

ScopeManager Class
Microsoft.Workflow.Client Namespace

Return to top

ScopeManager.GetChildScopes Method ()

Retrieves all child scopes

Syntax

public Collection<ScopeDescription> GetChildScopes()
public:
Collection<ScopeDescription^>^ GetChildScopes()
member GetChildScopes : unit -> Collection<ScopeDescription>
Public Function GetChildScopes As Collection(Of ScopeDescription)

Return Value

Type: System.Collections.ObjectModel.Collection<ScopeDescription>

Collection of ScopeDescriptions for all child scopes.

Return to top

ScopeManager.GetChildScopes Method (Int32, Int32)

Retrieves specified subset of child scopes.

Syntax

public Collection<ScopeDescription> GetChildScopes(
    int skip,
    int count
)
public:
Collection<ScopeDescription^>^ GetChildScopes(
    int skip,
    int count
)
member GetChildScopes : 
        skip:int *
        count:int -> Collection<ScopeDescription>
Public Function GetChildScopes (
    skip As Integer,
    count As Integer
) As Collection(Of ScopeDescription)

Parameters

Return Value

Type: System.Collections.ObjectModel.Collection<ScopeDescription>

Collection of ScopeDescriptions for the retrieved child scopes.

Remarks

Can be used to paging over child scopes

Return to top

ScopeManager.GetChildScopes Method (Int32, Int32, ScopeStatus)

Retrieves specified subset of child scopes that are in specififed state.

Syntax

public Collection<ScopeDescription> GetChildScopes(
    int skip,
    int count,
    ScopeStatus status
)
public:
Collection<ScopeDescription^>^ GetChildScopes(
    int skip,
    int count,
    ScopeStatus status
)
member GetChildScopes : 
        skip:int *
        count:int *
        status:ScopeStatus -> Collection<ScopeDescription>
Public Function GetChildScopes (
    skip As Integer,
    count As Integer,
    status As ScopeStatus
) As Collection(Of ScopeDescription)

Parameters

Return Value

Type: System.Collections.ObjectModel.Collection<ScopeDescription>

Collection of ScopeDescriptions for the retrieved child scopes.

Return to top