Container.CreateSite(IComponent, String) Method

Definition

Creates a site ISite for the given IComponent and assigns the given name to the site.

protected:
 virtual System::ComponentModel::ISite ^ CreateSite(System::ComponentModel::IComponent ^ component, System::String ^ name);
protected virtual System.ComponentModel.ISite CreateSite (System.ComponentModel.IComponent component, string name);
protected virtual System.ComponentModel.ISite CreateSite (System.ComponentModel.IComponent component, string? name);
abstract member CreateSite : System.ComponentModel.IComponent * string -> System.ComponentModel.ISite
override this.CreateSite : System.ComponentModel.IComponent * string -> System.ComponentModel.ISite
Protected Overridable Function CreateSite (component As IComponent, name As String) As ISite

Parameters

component
IComponent

The IComponent to create a site for.

name
String

The name to assign to component, or null to skip the name assignment.

Returns

The newly created site.

Remarks

If the name parameter is null, the IComponent is added to the Container without an identifying name.

This method can be overridden by a derived class. Implementers that need to override the CreateSite method can provide a custom implementation through a class that implements the ISite interface.

Applies to