共用方式為


IGrainReferenceRuntime.Convert 方法

定義

多載

Convert(IAddressable, Type)

將提供的 grain 轉換為提供的 interfaceType

Convert<TGrainInterface>(IAddressable)

將提供的 grain 轉換為指定的介面。

Convert(IAddressable, Type)

來源:
IGrainReferenceRuntime.cs

將提供的 grain 轉換為提供的 interfaceType

public object Convert (Orleans.Runtime.IAddressable grain, Type interfaceType);
abstract member Convert : Orleans.Runtime.IAddressable * Type -> obj
Public Function Convert (grain As IAddressable, interfaceType As Type) As Object

參數

grain
IAddressable

粒紋。

interfaceType
Type

產生的介面類別型。

傳回

實作 的 interfaceType 參考 grain

適用於

Convert<TGrainInterface>(IAddressable)

來源:
IGrainReferenceRuntime.cs

將提供的 grain 轉換為指定的介面。

public TGrainInterface Convert<TGrainInterface> (Orleans.Runtime.IAddressable grain);
abstract member Convert : Orleans.Runtime.IAddressable -> 'GrainInterface
Public Function Convert(Of TGrainInterface) (grain As IAddressable) As TGrainInterface

類型參數

TGrainInterface

目標細微性介面類別型。

參數

grain
IAddressable

要轉換的細微性參考。

傳回

TGrainInterface

實作 的 TGrainInterface 參考 grain

適用於