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

◆ Name

string System.ComponentModel.NestedContainer.Site.Name
getset

Implements System.ComponentModel.ISite.

Definition at line 46 of file NestedContainer.cs.

47 {
48 get
49 {
50 return _name;
51 }
52 [RequiresUnreferencedCode("The Type of components in the container cannot be statically discovered to validate the name.")]
53 set
54 {
55 if (value == null || _name == null || !value.Equals(_name))
56 {
57 ((NestedContainer)Container).ValidateName(Component, value);
58 _name = value;
59 }
60 }
61 }