共用方式為


ActivatedClientTypeEntry 建構函式

定義

初始化 ActivatedClientTypeEntry 類別的新執行個體。

多載

ActivatedClientTypeEntry(Type, String)

使用指定的 ActivatedClientTypeEntry 和應用程式 URL,初始化 Type 類別的新執行個體。

ActivatedClientTypeEntry(String, String, String)

使用指定的型別名稱、組件名稱和應用程式 URL,初始化 ActivatedClientTypeEntry 類別的新執行個體。

ActivatedClientTypeEntry(Type, String)

使用指定的 ActivatedClientTypeEntry 和應用程式 URL,初始化 Type 類別的新執行個體。

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

參數

type
Type

用戶端啟動型別的 Type

appUrl
String

要在其中啟動型別之應用程式的 URL。

範例

下列程式碼範例示範如何建構 ActivatedClientTypeEntry

// Create activated client type entry.
ActivatedClientTypeEntry^ activatedClientTypeEntry = gcnew ActivatedClientTypeEntry( HelloServer::typeid, "tcp://localhost:8082" );
// Create activated client type entry.
ActivatedClientTypeEntry myActivatedClientTypeEntry =
    new ActivatedClientTypeEntry(typeof(HelloServer),
    "tcp://localhost:8082");
' Create activated client type entry.
Dim myActivatedClientTypeEntry As _
    New ActivatedClientTypeEntry(GetType(HelloServer), _
    "tcp://localhost:8082")

備註

型別的元件名稱衍生自 type 參數。

適用於

ActivatedClientTypeEntry(String, String, String)

使用指定的型別名稱、組件名稱和應用程式 URL,初始化 ActivatedClientTypeEntry 類別的新執行個體。

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

參數

typeName
String

用戶端啟動型別的型別名稱。

assemblyName
String

用戶端啟動型別的組件名稱。

appUrl
String

要在其中啟動型別之應用程式的 URL。

適用於