다음을 통해 공유


IGrainReferenceRuntime.Convert 메서드

정의

오버로드

Convert(IAddressable, Type)

제공된 를 제공interfaceTypegrain 로 변환합니다.

Convert<TGrainInterface>(IAddressable)

제공된 grain 를 지정된 인터페이스로 변환합니다.

Convert(IAddressable, Type)

Source:
IGrainReferenceRuntime.cs

제공된 를 제공interfaceTypegrain 로 변환합니다.

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

결과 인터페이스 형식입니다.

반환

grain 구현하는 에 대한 참조입니다 interfaceType.

적용 대상

Convert<TGrainInterface>(IAddressable)

Source:
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

grain 구현하는 에 대한 참조입니다 TGrainInterface.

적용 대상