Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
this[string propertyName]
T
System.Text.Json.JsonPropertyDictionary
<
T
>.
this
[
string
propertyName
]
get
set
Definition at line
160
of file
JsonPropertyDictionary.cs
.
161
{
162
get
163
{
164
if
(
TryGetPropertyValue
(
propertyName
,
out
var
value
))
165
{
166
return
value
;
167
}
168
return
null
;
169
}
170
set
171
{
172
SetValue
(
propertyName
,
value
);
173
}
174
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Text.Json.JsonPropertyDictionary.TryGetPropertyValue
bool TryGetPropertyValue(string propertyName, out T value)
Definition
JsonPropertyDictionary.cs:449
System.Text.Json.JsonPropertyDictionary.SetValue
T SetValue(string propertyName, T value, Action assignParent=null)
Definition
JsonPropertyDictionary.cs:300
System.ExceptionArgument.value
@ value
System
Text
Json
JsonPropertyDictionary
Generated by
1.10.0