IDeepCopierProvider.TryGetDeepCopier 方法

定义

重载

TryGetDeepCopier(Type)

获取能够复制 类型 type实例的深度复制器,如果未找到适当的复制器,则返回 null

TryGetDeepCopier<T>()

获取能够复制 类型 T实例的深度复制器,如果未找到适当的复制器,则返回 null

TryGetDeepCopier(Type)

获取能够复制 类型 type实例的深度复制器,如果未找到适当的复制器,则返回 null

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

参数

type
Type

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

返回

一个能够复制 类型 type实例的深度复制器,如果未 null 找到适当的复制器,则为 。

适用于

TryGetDeepCopier<T>()

获取能够复制 类型 T实例的深度复制器,如果未找到适当的复制器,则返回 null

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

类型参数

T

复制器支持的类型。

返回

一个能够复制 类型 T实例的深度复制器,如果未 null 找到适当的复制器,则为 。

适用于