WorkflowRuntime.GetAllServices 메서드

정의

오버로드

Name Description
GetAllServices(Type)

지정된 런타임 엔진을 구현하거나 파생하는 워크플로 런타임 엔진에 추가되는 Type모든 서비스를 검색합니다.

GetAllServices<T>()

지정된 제네릭 형식을 구현하거나 파생하는 워크플로 런타임 엔진에 추가되는 모든 서비스를 검색합니다.

GetAllServices(Type)

지정된 런타임 엔진을 구현하거나 파생하는 워크플로 런타임 엔진에 추가되는 Type모든 서비스를 검색합니다.

public:
 System::Collections::ObjectModel::ReadOnlyCollection<System::Object ^> ^ GetAllServices(Type ^ serviceType);
public System.Collections.ObjectModel.ReadOnlyCollection<object> GetAllServices(Type serviceType);
member this.GetAllServices : Type -> System.Collections.ObjectModel.ReadOnlyCollection<obj>
Public Function GetAllServices (serviceType As Type) As ReadOnlyCollection(Of Object)

매개 변수

serviceType
Type

Type 해당 서비스가 반환되려면 구현해야 합니다.

반품

지정된 Type.

예외

serviceType null 참조입니다(Visual Basic Nothing).

설명

ReadOnlyCollection<T> 항목은 지정된 Type 런타임 엔진을 구현하거나 파생하는 서비스가 워크플로 런타임 엔진에 추가되지 않음을 나타냅니다.

적용 대상

GetAllServices<T>()

지정된 제네릭 형식을 구현하거나 파생하는 워크플로 런타임 엔진에 추가되는 모든 서비스를 검색합니다.

public:
generic <typename T>
 System::Collections::ObjectModel::ReadOnlyCollection<T> ^ GetAllServices();
public System.Collections.ObjectModel.ReadOnlyCollection<T> GetAllServices<T>();
member this.GetAllServices : unit -> System.Collections.ObjectModel.ReadOnlyCollection<'T>
Public Function GetAllServices(Of T) () As ReadOnlyCollection(Of T)

형식 매개 변수

T

서비스 유형입니다.

반품

지정된 제네릭 형식을 구현하거나 파생하는 서비스입니다.

예외

설명

ReadOnlyCollection<T> 항목은 지정된 제네릭 형식을 구현하거나 파생하는 워크플로 런타임 엔진에 서비스가 추가되지 않음을 나타냅니다.

적용 대상