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

◆ Name

string System.ComponentModel.Container.Site.Name
getset

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 }