IDeepCopierProvider.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 type);
abstract member GetDeepCopier : Type -> Orleans.Serialization.Cloning.IDeepCopier
Public Function GetDeepCopier (type As Type) As IDeepCopier
Parameters
- type
- Type
The type supported by the returned copier.
Returns
A deep copier capable of copying instances of type type
.
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>
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
.