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

◆ OwnerName

virtual ? string System.ComponentModel.NestedContainer.OwnerName
getprotected

Definition at line 82 of file NestedContainer.cs.

83 {
84 get
85 {
86 string result = null;
87 if (Owner != null && Owner.Site != null)
88 {
89 result = ((!(Owner.Site is INestedSite nestedSite)) ? Owner.Site.Name : nestedSite.FullName);
90 }
91 return result;
92 }
93 }