HttpServerUtilityBase.CreateObject Method

Definition

When overridden in a derived class, creates a server instance of a COM object.

Overloads

CreateObject(String)

When overridden in a derived class, creates a server instance of a COM object that is identified by the object's programmatic identifier (ProgID).

CreateObject(Type)

When overridden in a derived class, creates a server instance of a COM object that is identified by the object's type.

CreateObject(String)

When overridden in a derived class, creates a server instance of a COM object that is identified by the object's programmatic identifier (ProgID).

public:
 virtual System::Object ^ CreateObject(System::String ^ progID);
public virtual object CreateObject (string progID);
abstract member CreateObject : string -> obj
override this.CreateObject : string -> obj
Public Overridable Function CreateObject (progID As String) As Object

Parameters

progID
String

The class or type of object to create an instance of.

Returns

The new object.

Exceptions

Applies to

CreateObject(Type)

When overridden in a derived class, creates a server instance of a COM object that is identified by the object's type.

public:
 virtual System::Object ^ CreateObject(Type ^ type);
public virtual object CreateObject (Type type);
abstract member CreateObject : Type -> obj
override this.CreateObject : Type -> obj
Public Overridable Function CreateObject (type As Type) As Object

Parameters

type
Type

A type that represents the object to create.

Returns

The new object.

Exceptions

Applies to