C# Class System.Collections.Hashtable.SyncHashtable

Inheritance: Hashtable
Show file Open project: dotnet/corefx

Protected Properties

Property Type Description
_table Hashtable

Public Methods

Method Description
Add ( Object key, Object value ) : void
Clear ( ) : void
Clone ( ) : Object
Contains ( Object key ) : bool
ContainsKey ( Object key ) : bool
ContainsValue ( Object key ) : bool
CopyTo ( Array array, int arrayIndex ) : void
GetEnumerator ( ) : IDictionaryEnumerator
GetObjectData ( SerializationInfo info, StreamingContext context ) : void
OnDeserialization ( Object sender ) : void
Remove ( Object key ) : void
this ( Object key ) : Object

Private Methods

Method Description
IEnumerable ( ) : IEnumerator
SyncHashtable ( Hashtable table ) : System.Diagnostics
SyncHashtable ( SerializationInfo info, StreamingContext context ) : System.Diagnostics
ToKeyValuePairsArray ( ) : System.Collections.KeyValuePairs[]

Method Details

Add() public method

public Add ( Object key, Object value ) : void
key Object
value Object
return void

Clear() public method

public Clear ( ) : void
return void

Clone() public method

public Clone ( ) : Object
return Object

Contains() public method

public Contains ( Object key ) : bool
key Object
return bool

ContainsKey() public method

public ContainsKey ( Object key ) : bool
key Object
return bool

ContainsValue() public method

public ContainsValue ( Object key ) : bool
key Object
return bool

CopyTo() public method

public CopyTo ( Array array, int arrayIndex ) : void
array System.Array
arrayIndex int
return void

GetEnumerator() public method

public GetEnumerator ( ) : IDictionaryEnumerator
return IDictionaryEnumerator

GetObjectData() public method

public GetObjectData ( SerializationInfo info, StreamingContext context ) : void
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
return void

OnDeserialization() public method

public OnDeserialization ( Object sender ) : void
sender Object
return void

Remove() public method

public Remove ( Object key ) : void
key Object
return void

this() public method

public this ( Object key ) : Object
key Object
return Object

Property Details

_table protected property

protected Hashtable,System.Collections _table
return Hashtable