CodecProvider.GetDeepCopier Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetDeepCopier(Type) |
Gets a deep copier capable of copying instances of type |
GetDeepCopier<T>() |
Gets a deep copier capable of copying instances of type |
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
.