Edit

Share via


ConcurrentDictionaryCopier<TKey,TValue>.DeepCopy Method

Definition

Overloads

DeepCopy(ConcurrentDictionary<TKey,TValue>, CopyContext)

Creates a deep copy of the provided input.

DeepCopy(ConcurrentDictionary<TKey,TValue>, ConcurrentDictionary<TKey,TValue>, CopyContext)

Clones members from input and copies them to output.

DeepCopy(ConcurrentDictionary<TKey,TValue>, CopyContext)

Creates a deep copy of the provided input.

public System.Collections.Concurrent.ConcurrentDictionary<TKey,TValue> DeepCopy (System.Collections.Concurrent.ConcurrentDictionary<TKey,TValue> input, Orleans.Serialization.Cloning.CopyContext context);
abstract member DeepCopy : System.Collections.Concurrent.ConcurrentDictionary<'Key, 'Value> * Orleans.Serialization.Cloning.CopyContext -> System.Collections.Concurrent.ConcurrentDictionary<'Key, 'Value>
override this.DeepCopy : System.Collections.Concurrent.ConcurrentDictionary<'Key, 'Value> * Orleans.Serialization.Cloning.CopyContext -> System.Collections.Concurrent.ConcurrentDictionary<'Key, 'Value>
Public Function DeepCopy (input As ConcurrentDictionary(Of TKey, TValue), context As CopyContext) As ConcurrentDictionary(Of TKey, TValue)

Parameters

input
ConcurrentDictionary<TKey,TValue>

The input.

context
CopyContext

The context.

Returns

ConcurrentDictionary<TKey,TValue>

A copy of input.

Implements

Applies to

DeepCopy(ConcurrentDictionary<TKey,TValue>, ConcurrentDictionary<TKey,TValue>, CopyContext)

Clones members from input and copies them to output.

public void DeepCopy (System.Collections.Concurrent.ConcurrentDictionary<TKey,TValue> input, System.Collections.Concurrent.ConcurrentDictionary<TKey,TValue> output, Orleans.Serialization.Cloning.CopyContext context);
abstract member DeepCopy : System.Collections.Concurrent.ConcurrentDictionary<'Key, 'Value> * System.Collections.Concurrent.ConcurrentDictionary<'Key, 'Value> * Orleans.Serialization.Cloning.CopyContext -> unit
override this.DeepCopy : System.Collections.Concurrent.ConcurrentDictionary<'Key, 'Value> * System.Collections.Concurrent.ConcurrentDictionary<'Key, 'Value> * Orleans.Serialization.Cloning.CopyContext -> unit
Public Sub DeepCopy (input As ConcurrentDictionary(Of TKey, TValue), output As ConcurrentDictionary(Of TKey, TValue), context As CopyContext)

Parameters

input
ConcurrentDictionary<TKey,TValue>

The input.

output
ConcurrentDictionary<TKey,TValue>

The output.

context
CopyContext

The context.

Implements

Applies to