Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Name
string
System.ComponentModel.Container.Site.Name
get
set
Implements
System.ComponentModel.ISite
.
Definition at line
17
of file
Container.cs
.
18
{
19
get
20
{
21
return
_name
;
22
}
23
[RequiresUnreferencedCode(
"The Type of components in the container cannot be statically discovered to validate the name."
)]
24
set
25
{
26
if
(
value
==
null
||
_name
==
null
|| !
value
.Equals(
_name
))
27
{
28
((
Container
)
Container
).ValidateName(
Component
,
value
);
29
_name
=
value
;
30
}
31
}
32
}
System.ComponentModel.Container.Site.Component
IComponent Component
Definition
Container.cs:11
System.ComponentModel.Container.Site.Container
IContainer Container
Definition
Container.cs:13
System.ComponentModel.Container.Site._name
string _name
Definition
Container.cs:9
System.ExceptionArgument.value
@ value
System
ComponentModel
Container
Site
Generated by
1.10.0