DeepCopier Delegate
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.
Provides functionality for copying object and values.
public delegate object DeepCopier(object original, ICopyContext context);
public sealed class DeepCopier
type DeepCopier = delegate of obj * ICopyContext -> obj
type DeepCopier = class
Public Delegate Function DeepCopier(original As Object, context As ICopyContext) As Object
Public NotInheritable Class DeepCopier
Parameters
- original
- Object
Original object to be deep copied.
- context
- ICopyContext
The serialization context.
Return Value
Deep copy of the original object.