WorkflowRuntime.GetAllServices メソッド

定義

オーバーロード

名前 説明
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)。

WorkflowRuntimeは破棄されます。

注釈

空の 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

サービスの種類。

返品

指定したジェネリック型を実装または派生するサービス。

例外

WorkflowRuntimeは破棄されます。

注釈

空の ReadOnlyCollection<T> は、指定したジェネリック型を実装または派生するサービスがワークフロー ランタイム エンジンに追加されていないことを示します。

適用対象