terraria-cpp2il v1.4.4.9
Terraria mobile dump, with CallAnalysis (see source code). Dump with reconstucted method: https://infinitynichto.github.io/terraria-cpp2il-methodrecon
|
Public Member Functions | |
NameValueCollection () | |
NameValueCollection (int capacity) | |
NameValueCollection (int capacity, IEqualityComparer equalityComparer) | |
void | Add (NameValueCollection c) |
virtual void | Clear () |
bool | HasKeys () |
virtual void | Add (string name, string value) |
virtual string | Get (string name) |
virtual string[] | GetValues (string name) |
virtual void | Set (string name, string value) |
virtual void | Remove (string name) |
virtual string | Get (int index) |
virtual string[] | GetValues (int index) |
virtual string | GetKey (int index) |
virtual void | GetObjectData (SerializationInfo info, StreamingContext context) |
virtual void | OnDeserialization (object sender) |
virtual IEnumerator | GetEnumerator () |
void | CopyTo (global::System.Array array, int index) |
Protected Member Functions | |
NameValueCollection (SerializationInfo info, StreamingContext context) | |
void | InvalidateCachedArrays () |
bool | BaseHasKeys () |
void | BaseAdd (string name, object value) |
void | BaseRemove (string name) |
void | BaseClear () |
object | BaseGet (string name) |
object | BaseGet (int index) |
void | BaseSet (string name, object value) |
string | BaseGetKey (int index) |
string[] | BaseGetAllKeys () |
Package Functions | |
virtual bool | InternalHasKeys () |
NameValueCollection (DBNull dummy) | |
Properties | |
string | this[string name] [get, set] |
string | this[int index] [get, set] |
virtual string[] | AllKeys [get, set] |
bool | IsReadOnly [get, set] |
virtual int | Count [get, set] |
object System.Collections.ICollection. | SyncRoot [get, set] |
bool System.Collections.ICollection. | IsSynchronized [get, set] |
virtual NameObjectCollectionBase.KeysCollection | Keys [get, set] |
Private Member Functions | |
void | Reset () |
void | Reset (int capacity) |
NameObjectCollectionBase.NameObjectEntry | FindEntry (string key) |
void System.Collections.ICollection. | CopyTo (Array array, int index) |
Static Private Member Functions | |
static string | GetAsOneString (ArrayList list) |
static string[] | GetAsStringArray (ArrayList list) |
Private Attributes | |
string[] | _all |
string[] | _allKeys |
bool | _readOnly |
ArrayList | _entriesArray |
IEqualityComparer | _keyComparer |
Hashtable | _entriesTable |
NameObjectCollectionBase.NameObjectEntry | _nullKeyEntry |
NameObjectCollectionBase.KeysCollection | _keys |
SerializationInfo | _serializationInfo |
int | _version |
object | _syncRoot |
Static Private Attributes | |
static StringComparer | defaultComparer |
Definition at line 13 of file NameValueCollection.cs.