WellKnownClientTypeEntry Constructors

Definition

Initializes a new instance of the WellKnownClientTypeEntry class.

Overloads

WellKnownClientTypeEntry(Type, String)

Initializes a new instance of the WellKnownClientTypeEntry class with the given type and URL.

WellKnownClientTypeEntry(String, String, String)

Initializes a new instance of the WellKnownClientTypeEntry class with the given type, assembly name, and URL.

WellKnownClientTypeEntry(Type, String)

Initializes a new instance of the WellKnownClientTypeEntry class with the given type and URL.

public:
 WellKnownClientTypeEntry(Type ^ type, System::String ^ objectUrl);
public WellKnownClientTypeEntry (Type type, string objectUrl);
new System.Runtime.Remoting.WellKnownClientTypeEntry : Type * string -> System.Runtime.Remoting.WellKnownClientTypeEntry
Public Sub New (type As Type, objectUrl As String)

Parameters

type
Type

The Type of the server-activated type.

objectUrl
String

The URL of the server-activated type.

Applies to

WellKnownClientTypeEntry(String, String, String)

Initializes a new instance of the WellKnownClientTypeEntry class with the given type, assembly name, and URL.

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

Parameters

typeName
String

The type name of the server-activated type.

assemblyName
String

The assembly name of the server-activated type.

objectUrl
String

The URL of the server-activated type.

Applies to