System.Collections.Hashtable.Hashtable C# (CSharp) Method

Hashtable() protected method

protected Hashtable ( SerializationInfo info, StreamingContext context ) : System.Diagnostics
info SerializationInfo
context StreamingContext
return System.Diagnostics
        protected Hashtable(SerializationInfo info, StreamingContext context)
        {
            //We can't do anything with the keys and values until the entire graph has been deserialized
            //and we have a reasonable estimate that GetHashCode is not going to fail.  For the time being,
            //we'll just cache this.  The graph is not valid until OnDeserialization has been called.
            HashHelpers.SerializationInfoTable.Add(this, info);
        }

Same methods

Hashtable::Hashtable ( ) : System.Diagnostics
Hashtable::Hashtable ( IDictionary d ) : System.Diagnostics
Hashtable::Hashtable ( IDictionary d, IEqualityComparer equalityComparer ) : System.Diagnostics
Hashtable::Hashtable ( IDictionary d, IHashCodeProvider hcp, IComparer comparer ) : System.Diagnostics
Hashtable::Hashtable ( IDictionary d, float loadFactor ) : System.Diagnostics
Hashtable::Hashtable ( IDictionary d, float loadFactor, IEqualityComparer equalityComparer ) : System.Diagnostics
Hashtable::Hashtable ( IDictionary d, float loadFactor, IHashCodeProvider hcp, IComparer comparer ) : System.Diagnostics
Hashtable::Hashtable ( IEqualityComparer equalityComparer ) : System.Diagnostics
Hashtable::Hashtable ( IHashCodeProvider hcp, IComparer comparer ) : System.Diagnostics
Hashtable::Hashtable ( bool trash ) : System.Diagnostics
Hashtable::Hashtable ( int capacity ) : System.Diagnostics
Hashtable::Hashtable ( int capacity, IEqualityComparer equalityComparer ) : System.Diagnostics
Hashtable::Hashtable ( int capacity, IHashCodeProvider hcp, IComparer comparer ) : System.Diagnostics
Hashtable::Hashtable ( int capacity, float loadFactor ) : System.Diagnostics
Hashtable::Hashtable ( int capacity, float loadFactor, IEqualityComparer equalityComparer ) : System.Diagnostics
Hashtable::Hashtable ( int capacity, float loadFactor, IHashCodeProvider hcp, IComparer comparer ) : System.Diagnostics