Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
this[XmlQualifiedName qname]
object System.Xml.Serialization.NameTable.this[
XmlQualifiedName
qname]
get
set
package
Definition at line
10
of file
NameTable.cs
.
11
{
12
get
13
{
14
if
(!
_table
.
TryGetValue
(
new
NameKey(qname.Name, qname.Namespace),
out
var
value
))
15
{
16
return
null
;
17
}
18
return
value
;
19
}
20
set
21
{
22
_table
[
new
NameKey(qname.Name, qname.Namespace)] =
value
;
23
}
24
}
System.Collections.Generic.Dictionary.TryGetValue
bool TryGetValue(TKey key, [MaybeNullWhen(false)] out TValue value)
Definition
Dictionary.cs:1419
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Xml.Serialization.NameTable._table
readonly Dictionary< NameKey, object > _table
Definition
NameTable.cs:8
System.ExceptionArgument.value
@ value
System
Xml
Serialization
NameTable
Generated by
1.10.0