Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Add() [2/2]

void System.Xml.Serialization.SoapAttributeOverrides.Add ( Type type,
string member,
SoapAttributes? attributes )
inline

Definition at line 29 of file SoapAttributeOverrides.cs.

30 {
31 Hashtable hashtable = (Hashtable)_types[type];
32 if (hashtable == null)
33 {
34 hashtable = new Hashtable();
35 _types.Add(type, hashtable);
36 }
37 else if (hashtable[member] != null)
38 {
40 }
41 hashtable.Add(member, attributes);
42 }
virtual void Add(object key, object? value)
Definition Hashtable.cs:676
static string XmlMultipleAttributeOverrides
Definition SR.cs:1590
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
Definition SR.cs:7

References System.Xml.Serialization.SoapAttributeOverrides._types, System.Collections.Hashtable.Add(), System.SR.Format(), System.type, and System.SR.XmlMultipleAttributeOverrides.