次の方法で共有


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。

適用対象