ActivatedServiceTypeEntry Constructors

Definition

Initializes a new instance of the ActivatedServiceTypeEntry class.

Overloads

ActivatedServiceTypeEntry(Type)

Initializes a new instance of the ActivatedServiceTypeEntry class with the given Type.

ActivatedServiceTypeEntry(String, String)

Initializes a new instance of the ActivatedServiceTypeEntry class with the given type name and assembly name.

ActivatedServiceTypeEntry(Type)

Initializes a new instance of the ActivatedServiceTypeEntry class with the given Type.

public:
 ActivatedServiceTypeEntry(Type ^ type);
public ActivatedServiceTypeEntry (Type type);
new System.Runtime.Remoting.ActivatedServiceTypeEntry : Type -> System.Runtime.Remoting.ActivatedServiceTypeEntry
Public Sub New (type As Type)

Parameters

type
Type

The Type of the client-activated service type.

Applies to

ActivatedServiceTypeEntry(String, String)

Initializes a new instance of the ActivatedServiceTypeEntry class with the given type name and assembly name.

public:
 ActivatedServiceTypeEntry(System::String ^ typeName, System::String ^ assemblyName);
public ActivatedServiceTypeEntry (string typeName, string assemblyName);
new System.Runtime.Remoting.ActivatedServiceTypeEntry : string * string -> System.Runtime.Remoting.ActivatedServiceTypeEntry
Public Sub New (typeName As String, assemblyName As String)

Parameters

typeName
String

The type name of the client-activated service type.

assemblyName
String

The assembly name of the client-activated service type.

Applies to