다음을 통해 공유


ScopeManager.GetChildScopes 메서드

 

하위 범위를 검색합니다.

네임스페이스:   Microsoft.Workflow.Client
어셈블리:  Microsoft.Workflow.Client.dll의 Microsoft.Workflow.Client

오버로드 목록

이름 설명
System_CAPS_pubmethod GetChildScopes()

모든 하위 범위를 검색합니다.

System_CAPS_pubmethod GetChildScopes(Int32, Int32)

지정된 일부 하위 범위를 검색합니다.

System_CAPS_pubmethod GetChildScopes(Int32, Int32, ScopeStatus)

지정된 상태에 있는 하위 범위 중 지정된 일부를 검색합니다.

참고 항목

ScopeManager 클래스
Microsoft.Workflow.Client 네임스페이스

맨 위로 이동

ScopeManager.GetChildScopes 메서드 ()

모든 하위 범위를 검색합니다.

구문

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

반환 값

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

모든 하위 범위에 대한 ScopeDescription 컬렉션입니다.

맨 위로 이동

ScopeManager.GetChildScopes 메서드 (Int32, Int32)

지정된 일부 하위 범위를 검색합니다.

구문

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)

매개 변수

  • count
    Type: System.Int32

    검색할 범위의 수입니다.

반환 값

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

검색된 하위 범위에 대한 ScopeDescription 컬렉션입니다.

설명

하위 범위를 페이징 오버하는 데 사용할 수 있습니다.

맨 위로 이동

ScopeManager.GetChildScopes 메서드 (Int32, Int32, ScopeStatus)

지정된 상태에 있는 하위 범위 중 지정된 일부를 검색합니다.

구문

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)

매개 변수

  • count
    Type: System.Int32

    검색할 범위의 수입니다.

반환 값

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

검색된 하위 범위에 대한 ScopeDescription 컬렉션입니다.

맨 위로 이동