IDeepCopierProvider.GetDeepCopier 方法

定义

重载

GetDeepCopier(Type)

获取能够复制 类型 type实例的深度复制器。

GetDeepCopier<T>()

获取能够复制 类型 T实例的深度复制器。

GetDeepCopier(Type)

获取能够复制 类型 type实例的深度复制器。

public Orleans.Serialization.Cloning.IDeepCopier GetDeepCopier (Type type);
abstract member GetDeepCopier : Type -> Orleans.Serialization.Cloning.IDeepCopier
Public Function GetDeepCopier (type As Type) As IDeepCopier

参数

type
Type

返回的复制器支持的类型。

返回

能够复制 类型 type实例的深度复制器。

适用于

GetDeepCopier<T>()

获取能够复制 类型 T实例的深度复制器。

public Orleans.Serialization.Cloning.IDeepCopier<T> GetDeepCopier<T> ();
abstract member GetDeepCopier : unit -> Orleans.Serialization.Cloning.IDeepCopier<'T>
Public Function GetDeepCopier(Of T) () As IDeepCopier(Of T)

类型参数

T

复制器支持的类型。

返回

能够复制 类型 T实例的深度复制器。

适用于