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
|
<Type Name="DictionaryEntry" FullName="System.Collections.DictionaryEntry" FullNameSP="System_Collections_DictionaryEntry" Maintainer="ecma">
<TypeSignature Language="ILASM" Value=".class public sequential sealed serializable DictionaryEntry extends System.ValueType" />
<TypeSignature Language="C#" Value="public struct DictionaryEntry" />
<MemberOfLibrary>BCL</MemberOfLibrary>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
<AssemblyPublicKey>[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 ]</AssemblyPublicKey>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ThreadingSafetyStatement>All public static members of this type are safe for multithreaded operations. No instance members are guaranteed to be thread safe.</ThreadingSafetyStatement>
<Base>
<BaseTypeName>System.ValueType</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>
<para> Represents a dictionary entry consisting of a
<see cref="P:System.Collections.DictionaryEntry.Key" />
and an associated <see cref="P:System.Collections.DictionaryEntry.Value" />.</para>
</summary>
<remarks>
<block subset="none" type="note">
<para> Some types that manage or access collections of
objects, such as <see cref="T:System.Collections.Hashtable" /> and <see cref="T:System.Collections.IDictionaryEnumerator" />, rely on the use
of one or more pairs of a key object and an associated value object. <see cref="T:System.Collections.DictionaryEntry" /> provides this functionality.</para>
<para> This structure supports the C#
<see langword="foreach" /> semantics for <see cref="T:System.Collections.Hashtable" />.</para>
</block>
</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(object key, object value)" />
<MemberSignature Language="C#" Value="public DictionaryEntry (object key, object value);" />
<MemberType>Constructor</MemberType>
<ReturnValue />
<Parameters>
<Parameter Name="key" Type="System.Object" />
<Parameter Name="value" Type="System.Object" />
</Parameters>
<Docs>
<param name="key">The <see cref="T:System.Object" /> defined to reference a dictionary entry.</param>
<param name="value">The <see cref="T:System.Object" /> that contains the content associated with <paramref name="key" />.</param>
<summary>
<para> Constructs and initializes a new instance of the <see cref="T:System.Collections.DictionaryEntry" /> class with the
specified key and value objects.
</para>
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="key" /> is <see langword="null" />.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Key">
<MemberSignature Language="ILASM" Value=".property object Key { public hidebysig specialname instance object get_Key() public hidebysig specialname instance void set_Key(object value) }" />
<MemberSignature Language="C#" Value="public object Key { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Gets or sets an object representing the key of the current <see cref="T:System.Collections.DictionaryEntry" />
.</para>
</summary>
<value>
<para>A <see cref="T:System.Object" /> representing the
key of the current <see cref="T:System.Collections.DictionaryEntry" /> .</para>
</value>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">Set <paramref name="value" /> is <see langword="null" />.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Value">
<MemberSignature Language="ILASM" Value=".property object Value { public hidebysig specialname instance object get_Value() public hidebysig specialname instance void set_Value(object value) }" />
<MemberSignature Language="C#" Value="public object Value { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Gets or sets an object representing the content of the current <see cref="T:System.Collections.DictionaryEntry" /> .</para>
</summary>
<value>
<para>A <see cref="T:System.Object" /> representing the
content of the current <see cref="T:System.Collections.DictionaryEntry" /> .</para>
</value>
<remarks>To be added.</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
</Members>
<TypeExcluded>0</TypeExcluded>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.ComVisible(true)</AttributeName>
</Attribute>
</Attributes>
</Type>
|