IDeepCopierProvider.GetDeepCopier 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
GetDeepCopier(Type) |
获取能够复制 类型 |
GetDeepCopier<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
实例的深度复制器。