-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathConcurrentDictionary`2+AlternateLookup`1.xml
More file actions
358 lines (358 loc) · 22.9 KB
/
Copy pathConcurrentDictionary`2+AlternateLookup`1.xml
File metadata and controls
358 lines (358 loc) · 22.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
<Type Name="ConcurrentDictionary<TKey,TValue>+AlternateLookup<TAlternateKey>" FullName="System.Collections.Concurrent.ConcurrentDictionary<TKey,TValue>+AlternateLookup<TAlternateKey>">
<TypeSignature Language="C#" Value="public readonly struct ConcurrentDictionary<TKey,TValue>.AlternateLookup<TAlternateKey> where TAlternateKey : allows ref struct" />
<TypeSignature Language="ILAsm" Value=".class nested public sequential ansi sealed beforefieldinit ConcurrentDictionary`2/AlternateLookup`1<TKey, TValue, TAlternateKey> extends System.ValueType" />
<TypeSignature Language="DocId" Value="T:System.Collections.Concurrent.ConcurrentDictionary`2.AlternateLookup`1" />
<TypeSignature Language="VB.NET" Value="Public Structure ConcurrentDictionary(Of TKey, TValue).AlternateLookup(Of TAlternateKey)" />
<TypeSignature Language="F#" Value="type ConcurrentDictionary<'Key, 'Value>.AlternateLookup<'AlternateKey> = struct" />
<TypeSignature Language="C++ CLI" Value="public: generic <typename TAlternateKey>
value class ConcurrentDictionary<TKey, TValue>::AlternateLookup" />
<AssemblyInfo>
<AssemblyName>System.Collections.Concurrent</AssemblyName>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<TypeForwardingChain>
<TypeForwarding From="netstandard" FromVersion="2.1.0.0" To="System.Collections.Concurrent" ToVersion="10.0.0.0" FrameworkAlternate="net-10.0" />
<TypeForwarding From="netstandard" FromVersion="2.1.0.0" To="System.Collections.Concurrent" ToVersion="9.0.0.0" FrameworkAlternate="net-9.0" />
</TypeForwardingChain>
<TypeParameters>
<TypeParameter Name="TKey" Index="0" FrameworkAlternate="net-9.0" />
<TypeParameter Name="TValue" Index="1" FrameworkAlternate="net-9.0">
<Attributes>
<Attribute FrameworkAlternate="net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
<TypeParameter Name="TAlternateKey" Index="2" FrameworkAlternate="net-9.0">
<Constraints>
<ParameterAttribute>AllowByRefLike</ParameterAttribute>
</Constraints>
</TypeParameter>
</TypeParameters>
<Base>
<BaseTypeName>System.ValueType</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.IsReadOnly]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.IsReadOnly>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(0)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(0)>]</AttributeName>
</Attribute>
</Attributes>
<Docs>
<typeparam name="TKey">The type of the keys in the dictionary.</typeparam>
<typeparam name="TValue">The type of the values in the dictionary.</typeparam>
<typeparam name="TAlternateKey">The alternate type of a key for performing lookups.</typeparam>
<summary>
<para>Provides a type that may be used to perform operations on a <see cref="T:System.Collections.Concurrent.ConcurrentDictionary`2" /></para>
<para>using a <typeparamref name="TAlternateKey" /> as a key instead of a <typeparamref name="TKey" />.</para>
</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName="ContainsKey">
<MemberSignature Language="C#" Value="public bool ContainsKey (TAlternateKey key);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance bool ContainsKey(!TAlternateKey key) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Concurrent.ConcurrentDictionary`2.AlternateLookup`1.ContainsKey(`2)" />
<MemberSignature Language="VB.NET" Value="Public Function ContainsKey (key As TAlternateKey) As Boolean" />
<MemberSignature Language="F#" Value="member this.ContainsKey : 'AlternateKey -> bool" Usage="alternateLookup.ContainsKey key" />
<MemberSignature Language="C++ CLI" Value="public:
 bool ContainsKey(TAlternateKey key);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Concurrent</AssemblyName>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="key" Type="TAlternateKey" Index="0" FrameworkAlternate="net-9.0" />
</Parameters>
<Docs>
<param name="key">The alternate key to check.</param>
<summary>Determines whether the <see cref="T:System.Collections.Concurrent.ConcurrentDictionary`2" /> contains the specified alternate key.</summary>
<returns>
<see langword="true" /> if the key is in the dictionary; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="key" /> is <see langword="null" />.</exception>
</Docs>
</Member>
<Member MemberName="Dictionary">
<MemberSignature Language="C#" Value="public System.Collections.Concurrent.ConcurrentDictionary<TKey,TValue> Dictionary { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.Concurrent.ConcurrentDictionary`2<!TKey, !TValue> Dictionary" />
<MemberSignature Language="DocId" Value="P:System.Collections.Concurrent.ConcurrentDictionary`2.AlternateLookup`1.Dictionary" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Dictionary As ConcurrentDictionary(Of TKey, TValue)" />
<MemberSignature Language="F#" Value="member this.Dictionary : System.Collections.Concurrent.ConcurrentDictionary<'Key, 'Value>" Usage="System.Collections.Concurrent.ConcurrentDictionary<'Key, 'Value>.AlternateLookup<'AlternateKey>.Dictionary" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Collections::Concurrent::ConcurrentDictionary<TKey, TValue> ^ Dictionary { System::Collections::Concurrent::ConcurrentDictionary<TKey, TValue> ^ get(); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Concurrent</AssemblyName>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.Concurrent.ConcurrentDictionary<TKey,TValue></ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the <see cref="T:System.Collections.Concurrent.ConcurrentDictionary`2" /> against which this instance performs operations.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Item">
<MemberSignature Language="C#" Value="public TValue this[TAlternateKey key] { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance !TValue Item(!TAlternateKey)" />
<MemberSignature Language="DocId" Value="P:System.Collections.Concurrent.ConcurrentDictionary`2.AlternateLookup`1.Item(`2)" />
<MemberSignature Language="VB.NET" Value="Default Public Property Item(key As TAlternateKey) As TValue" />
<MemberSignature Language="F#" Value="member this.Item('AlternateKey) : 'Value with get, set" Usage="System.Collections.Concurrent.ConcurrentDictionary<'Key, 'Value>.AlternateLookup<'AlternateKey>.Item" />
<MemberSignature Language="C++ CLI" Value="public:
 property TValue default[TAlternateKey] { TValue get(TAlternateKey key); void set(TAlternateKey key, TValue value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Concurrent</AssemblyName>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TValue</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="key" Type="TAlternateKey" Index="0" FrameworkAlternate="net-9.0" />
</Parameters>
<Docs>
<param name="key">The alternate key of the value to get or set.</param>
<summary>Gets or sets the value associated with the specified alternate key.</summary>
<value>
<para>The value associated with the specified alternate key. If the specified alternate key is not found, a get operation throws</para>
<para>a <see cref="T:System.Collections.Generic.KeyNotFoundException" />, and a set operation creates a new element with the specified key.</para>
</value>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="key" /> is <see langword="null" />.</exception>
<exception cref="T:System.Collections.Generic.KeyNotFoundException">The property is retrieved and alternate key does not exist in the collection.</exception>
</Docs>
</Member>
<Member MemberName="TryAdd">
<MemberSignature Language="C#" Value="public bool TryAdd (TAlternateKey key, TValue value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance bool TryAdd(!TAlternateKey key, !TValue value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Concurrent.ConcurrentDictionary`2.AlternateLookup`1.TryAdd(`2,`1)" />
<MemberSignature Language="VB.NET" Value="Public Function TryAdd (key As TAlternateKey, value As TValue) As Boolean" />
<MemberSignature Language="F#" Value="member this.TryAdd : 'AlternateKey * 'Value -> bool" Usage="alternateLookup.TryAdd (key, value)" />
<MemberSignature Language="C++ CLI" Value="public:
 bool TryAdd(TAlternateKey key, TValue value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Concurrent</AssemblyName>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="key" Type="TAlternateKey" Index="0" FrameworkAlternate="net-9.0" />
<Parameter Name="value" Type="TValue" Index="1" FrameworkAlternate="net-9.0" />
</Parameters>
<Docs>
<param name="key">The alternate key of the element to add.</param>
<param name="value">The value of the element to add.</param>
<summary>Attempts to add the specified key and value to the dictionary.</summary>
<returns>
<see langword="true" /> if the key/value pair was added to the dictionary successfully; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="key" /> is <see langword="null" />.</exception>
</Docs>
</Member>
<Member MemberName="TryGetValue">
<MemberSignature Language="C#" Value="public bool TryGetValue (TAlternateKey key, out TValue value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance bool TryGetValue(!TAlternateKey key, [out] !TValue& value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Concurrent.ConcurrentDictionary`2.AlternateLookup`1.TryGetValue(`2,`1@)" />
<MemberSignature Language="VB.NET" Value="Public Function TryGetValue (key As TAlternateKey, ByRef value As TValue) As Boolean" />
<MemberSignature Language="F#" Value="member this.TryGetValue : 'AlternateKey * 'Value -> bool" Usage="alternateLookup.TryGetValue (key, value)" />
<MemberSignature Language="C++ CLI" Value="public:
 bool TryGetValue(TAlternateKey key, [Runtime::InteropServices::Out] TValue % value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Concurrent</AssemblyName>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="key" Type="TAlternateKey" Index="0" FrameworkAlternate="net-9.0" />
<Parameter Name="value" Type="TValue" RefType="out" Index="1" FrameworkAlternate="net-9.0">
<Attributes>
<Attribute FrameworkAlternate="net-9.0">
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="key">The alternate key of the value to get.</param>
<param name="value">
<para>When this method returns, contains the value associated with the specified key, if the key is found;</para>
<para>otherwise, the default value for the type of the value parameter.</para>
</param>
<summary>Gets the value associated with the specified alternate key.</summary>
<returns>
<see langword="true" /> if an entry was found; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="key" /> is <see langword="null" />.</exception>
</Docs>
</Member>
<Member MemberName="TryGetValue">
<MemberSignature Language="C#" Value="public bool TryGetValue (TAlternateKey key, out TKey actualKey, out TValue value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance bool TryGetValue(!TAlternateKey key, [out] !TKey& actualKey, [out] !TValue& value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Concurrent.ConcurrentDictionary`2.AlternateLookup`1.TryGetValue(`2,`0@,`1@)" />
<MemberSignature Language="VB.NET" Value="Public Function TryGetValue (key As TAlternateKey, ByRef actualKey As TKey, ByRef value As TValue) As Boolean" />
<MemberSignature Language="F#" Value="member this.TryGetValue : 'AlternateKey * 'Key * 'Value -> bool" Usage="alternateLookup.TryGetValue (key, actualKey, value)" />
<MemberSignature Language="C++ CLI" Value="public:
 bool TryGetValue(TAlternateKey key, [Runtime::InteropServices::Out] TKey % actualKey, [Runtime::InteropServices::Out] TValue % value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Concurrent</AssemblyName>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="key" Type="TAlternateKey" Index="0" FrameworkAlternate="net-9.0" />
<Parameter Name="actualKey" Type="TKey" RefType="out" Index="1" FrameworkAlternate="net-9.0">
<Attributes>
<Attribute FrameworkAlternate="net-9.0">
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
<Parameter Name="value" Type="TValue" RefType="out" Index="2" FrameworkAlternate="net-9.0">
<Attributes>
<Attribute FrameworkAlternate="net-9.0">
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="key">The alternate key of the value to get.</param>
<param name="actualKey">
<para>When this method returns, contains the actual key associated with the alternate key, if the key is found;</para>
<para>otherwise, the default value for the type of the key parameter.</para>
</param>
<param name="value">
<para>When this method returns, contains the value associated with the specified key, if the key is found;</para>
<para>otherwise, the default value for the type of the value parameter.</para>
</param>
<summary>Gets the value associated with the specified alternate key.</summary>
<returns>
<see langword="true" /> if an entry was found; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="key" /> is <see langword="null" />.</exception>
</Docs>
</Member>
<Member MemberName="TryRemove">
<MemberSignature Language="C#" Value="public bool TryRemove (TAlternateKey key, out TValue value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance bool TryRemove(!TAlternateKey key, [out] !TValue& value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Concurrent.ConcurrentDictionary`2.AlternateLookup`1.TryRemove(`2,`1@)" />
<MemberSignature Language="VB.NET" Value="Public Function TryRemove (key As TAlternateKey, ByRef value As TValue) As Boolean" />
<MemberSignature Language="F#" Value="member this.TryRemove : 'AlternateKey * 'Value -> bool" Usage="alternateLookup.TryRemove (key, value)" />
<MemberSignature Language="C++ CLI" Value="public:
 bool TryRemove(TAlternateKey key, [Runtime::InteropServices::Out] TValue % value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Concurrent</AssemblyName>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="key" Type="TAlternateKey" Index="0" FrameworkAlternate="net-9.0" />
<Parameter Name="value" Type="TValue" RefType="out" Index="1" FrameworkAlternate="net-9.0">
<Attributes>
<Attribute FrameworkAlternate="net-9.0">
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="key">The alternate key of the element to remove.</param>
<param name="value">The removed element.</param>
<summary>
<para>Removes the value with the specified alternate key from the <see cref="T:System.Collections.Generic.Dictionary`2" />,</para>
<para>and copies the element to the value parameter.</para>
</summary>
<returns>
<see langword="true" /> if the element is successfully found and removed; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="key" /> is <see langword="null" />.</exception>
</Docs>
</Member>
<Member MemberName="TryRemove">
<MemberSignature Language="C#" Value="public bool TryRemove (TAlternateKey key, out TKey actualKey, out TValue value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance bool TryRemove(!TAlternateKey key, [out] !TKey& actualKey, [out] !TValue& value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Collections.Concurrent.ConcurrentDictionary`2.AlternateLookup`1.TryRemove(`2,`0@,`1@)" />
<MemberSignature Language="VB.NET" Value="Public Function TryRemove (key As TAlternateKey, ByRef actualKey As TKey, ByRef value As TValue) As Boolean" />
<MemberSignature Language="F#" Value="member this.TryRemove : 'AlternateKey * 'Key * 'Value -> bool" Usage="alternateLookup.TryRemove (key, actualKey, value)" />
<MemberSignature Language="C++ CLI" Value="public:
 bool TryRemove(TAlternateKey key, [Runtime::InteropServices::Out] TKey % actualKey, [Runtime::InteropServices::Out] TValue % value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Collections.Concurrent</AssemblyName>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="key" Type="TAlternateKey" Index="0" FrameworkAlternate="net-9.0" />
<Parameter Name="actualKey" Type="TKey" RefType="out" Index="1" FrameworkAlternate="net-9.0">
<Attributes>
<Attribute FrameworkAlternate="net-9.0">
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
<Parameter Name="value" Type="TValue" RefType="out" Index="2" FrameworkAlternate="net-9.0">
<Attributes>
<Attribute FrameworkAlternate="net-9.0">
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="key">The alternate key of the element to remove.</param>
<param name="actualKey">The removed key.</param>
<param name="value">The removed element.</param>
<summary>
<para>Removes the value with the specified alternate key from the <see cref="T:System.Collections.Generic.Dictionary`2" />,</para>
<para>and copies the associated key and element to the value parameter.</para>
</summary>
<returns>
<see langword="true" /> if the element is successfully found and removed; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="key" /> is <see langword="null" />.</exception>
</Docs>
</Member>
</Members>
</Type>