WellKnownServiceTypeEntry Constructors

Definition

Initializes a new instance of the WellKnownServiceTypeEntry class.

Overloads

WellKnownServiceTypeEntry(Type, String, WellKnownObjectMode)

Initializes a new instance of the WellKnownServiceTypeEntry class with the given Type, object URI, and WellKnownObjectMode.

WellKnownServiceTypeEntry(String, String, String, WellKnownObjectMode)

Initializes a new instance of the WellKnownServiceTypeEntry class with the given type name, assembly name, object URI, and WellKnownObjectMode.

WellKnownServiceTypeEntry(Type, String, WellKnownObjectMode)

Initializes a new instance of the WellKnownServiceTypeEntry class with the given Type, object URI, and WellKnownObjectMode.

public:
 WellKnownServiceTypeEntry(Type ^ type, System::String ^ objectUri, System::Runtime::Remoting::WellKnownObjectMode mode);
public WellKnownServiceTypeEntry (Type type, string objectUri, System.Runtime.Remoting.WellKnownObjectMode mode);
new System.Runtime.Remoting.WellKnownServiceTypeEntry : Type * string * System.Runtime.Remoting.WellKnownObjectMode -> System.Runtime.Remoting.WellKnownServiceTypeEntry
Public Sub New (type As Type, objectUri As String, mode As WellKnownObjectMode)

Parameters

type
Type

The Type of the server-activated service type object.

objectUri
String

The URI of the server-activated type.

mode
WellKnownObjectMode

The WellKnownObjectMode of the type, which defines how the object is activated.

Applies to

WellKnownServiceTypeEntry(String, String, String, WellKnownObjectMode)

Initializes a new instance of the WellKnownServiceTypeEntry class with the given type name, assembly name, object URI, and WellKnownObjectMode.

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

Parameters

typeName
String

The full type name of the server-activated service type.

assemblyName
String

The assembly name of the server-activated service type.

objectUri
String

The URI of the server-activated object.

mode
WellKnownObjectMode

The WellKnownObjectMode of the type, which defines how the object is activated.

Applies to