次の方法で共有


ActivityExecutionContext.GetService メソッド

定義

オーバーロード

GetService(Type)

指定した型のサービスを返します。

GetService<T>()

指定された Type のサービス プロバイダーを返します。

GetService(Type)

指定した型のサービスを返します。

public:
 virtual System::Object ^ GetService(Type ^ serviceType);
public object GetService (Type serviceType);
abstract member GetService : Type -> obj
override this.GetService : Type -> obj
Public Function GetService (serviceType As Type) As Object

パラメーター

serviceType
Type

サービスの Type

戻り値

Object

指定した Object のサービス Type

実装

例外

ActivityExecutionContext は破棄されています。

適用対象

GetService<T>()

指定された Type のサービス プロバイダーを返します。

public:
generic <typename T>
 T GetService();
public T GetService<T> ();
member this.GetService : unit -> 'T
Public Function GetService(Of T) () As T

型パラメーター

T

取得するプロバイダーの型を指定します。

戻り値

T

指定した Object のサービス プロバイダー Type

例外

ActivityExecutionContext は破棄されています。

適用対象