Szerkesztés

Megosztás a következőn keresztül:


CodecProvider.GetDeepCopier Method

Definition

Overloads

GetDeepCopier(Type)

Gets a deep copier capable of copying instances of type type.

GetDeepCopier<T>()

Gets a deep copier capable of copying instances of type T.

GetDeepCopier(Type)

Gets a deep copier capable of copying instances of type type.

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

Parameters

fieldType
Type

Returns

A deep copier capable of copying instances of type type.

Implements

Applies to

GetDeepCopier<T>()

Gets a deep copier capable of copying instances of type T.

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

Type Parameters

T

The type supported by the copier.

Returns

A deep copier capable of copying instances of type T.

Implements

Applies to