共用方式為


WorkflowRuntimeEndpoint.GetService 方法

定義

多載

GetService(Type)

從服務物件清單取得指定服務型別的服務物件。

GetService<T>()

取得與指定為範本參數之服務型別對應的服務物件。

GetService(Type)

從服務物件清單取得指定服務型別的服務物件。

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

參數

serviceType
Type

服務的型別,該服務的物件必須從物件清單擷取。

傳回

Object

指定服務型別的服務物件。

適用於

GetService<T>()

取得與指定為範本參數之服務型別對應的服務物件。

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

類型參數

T

要取得的服務的類型。

傳回

T

對應至服務型別的服務物件。

適用於