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

◆ CreateSite()

override ISite System.ComponentModel.NestedContainer.CreateSite ( IComponent component,
string? name )
inlineprotectedvirtual

Reimplemented from System.ComponentModel.Container.

Definition at line 101 of file NestedContainer.cs.

102 {
103 if (component == null)
104 {
105 throw new ArgumentNullException("component");
106 }
107 return new Site(component, this, name);
108 }