IpcClientChannel コンストラクタ ()とは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > IpcClientChannel コンストラクタ ()の意味・解説 

IpcClientChannel コンストラクタ ()

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

IpcServerChannel クラス新しインスタンス初期化します。

名前空間: System.Runtime.Remoting.Channels.Ipc
アセンブリ: System.Runtime.Remoting (system.runtime.remoting.dll 内)
構文構文

Dim instance As New IpcClientChannel
public IpcClientChannel ()
public:
IpcClientChannel ()
public IpcClientChannel ()
public function IpcClientChannel ()
解説解説
使用例使用例

このコンストラクタ使用するコードの例次に示します

IpcClientChannel clientChannel = new IpcClientChannel();
ChannelServices.RegisterChannel(clientChannel);
IpcClientChannel^ clientChannel = gcnew IpcClientChannel;
ChannelServices::RegisterChannel( clientChannel );
IpcClientChannel clientChannel = new IpcClientChannel();
ChannelServices.RegisterChannel(clientChannel);
.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
IpcClientChannel クラス
IpcClientChannel メンバ
System.Runtime.Remoting.Channels.Ipc 名前空間

IpcClientChannel コンストラクタ (IDictionary, IClientChannelSinkProvider)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

構成プロパティシンク指定して、IpcClientChannel クラス新しインスタンス初期化します。

名前空間: System.Runtime.Remoting.Channels.Ipc
アセンブリ: System.Runtime.Remoting (system.runtime.remoting.dll 内)
構文構文

Public Sub New ( _
    properties As IDictionary, _
    sinkProvider As IClientChannelSinkProvider _
)
Dim properties As IDictionary
Dim sinkProvider As IClientChannelSinkProvider

Dim instance As New IpcClientChannel(properties,
 sinkProvider)
public IpcClientChannel (
    IDictionary properties,
    IClientChannelSinkProvider sinkProvider
)
public:
IpcClientChannel (
    IDictionary^ properties, 
    IClientChannelSinkProvider^ sinkProvider
)
public IpcClientChannel (
    IDictionary properties, 
    IClientChannelSinkProvider sinkProvider
)
public function IpcClientChannel (
    properties : IDictionary, 
    sinkProvider : IClientChannelSinkProvider
)

パラメータ

properties

チャネル使用される構成プロパティの値を指定する IDictionary コレクション

sinkProvider

チャネルによって使用される IServerChannelSinkProvider の実装

解説解説
使用例使用例

このコンストラクタ使用するコードの例次に示します

// Create the client channel.
System.Collections.IDictionary properties = 
    new System.Collections.Hashtable();
properties["name"] = "ipc client";
properties["priority"] = "1";
System.Runtime.Remoting.Channels.IClientChannelSinkProvider 
    sinkProvider = null;
IpcClientChannel clientChannel = 
    new IpcClientChannel(properties, sinkProvider);
// Create the client channel.
System::Collections::IDictionary^ properties = gcnew System::Collections::Hashtable;
properties->default[ L"name" ] = L"ipc client";
properties->default[ L"priority" ] = L"1";
IClientChannelSinkProvider^ sinkProvider = nullptr;
IpcClientChannel^ clientChannel = gcnew IpcClientChannel( properties,sinkProvider
 );
.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
IpcClientChannel クラス
IpcClientChannel メンバ
System.Runtime.Remoting.Channels.Ipc 名前空間
その他の技術情報
チャネルおよびフォーマッタ構成プロパティ

IpcClientChannel コンストラクタ (String, IClientChannelSinkProvider)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

名前とシンク指定して、IpcClientChannel クラス新しインスタンス初期化します。

名前空間: System.Runtime.Remoting.Channels.Ipc
アセンブリ: System.Runtime.Remoting (system.runtime.remoting.dll 内)
構文構文

Public Sub New ( _
    name As String, _
    sinkProvider As IClientChannelSinkProvider _
)
Dim name As String
Dim sinkProvider As IClientChannelSinkProvider

Dim instance As New IpcClientChannel(name,
 sinkProvider)
public IpcClientChannel (
    string name,
    IClientChannelSinkProvider sinkProvider
)
public:
IpcClientChannel (
    String^ name, 
    IClientChannelSinkProvider^ sinkProvider
)
public IpcClientChannel (
    String name, 
    IClientChannelSinkProvider sinkProvider
)
public function IpcClientChannel (
    name : String, 
    sinkProvider : IClientChannelSinkProvider
)

パラメータ

name

チャネルの名前。

sinkProvider

チャネルによって使用される IClientChannelSinkProvider の実装

解説解説
使用例使用例

このコンストラクタ使用するコードの例次に示します

// Create the client channel.
string name = "ipc client";
System.Runtime.Remoting.Channels.IClientChannelSinkProvider 
    sinkProvider = null;
IpcClientChannel clientChannel = 
    new IpcClientChannel(name, sinkProvider);
// Create the client channel.
String^ name = L"ipc client";
IClientChannelSinkProvider^ sinkProvider = nullptr;
IpcClientChannel^ clientChannel = gcnew IpcClientChannel( name,sinkProvider );
.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
IpcClientChannel クラス
IpcClientChannel メンバ
System.Runtime.Remoting.Channels.Ipc 名前空間

IpcClientChannel コンストラクタ

IpcServerChannel クラス新しインスタンス初期化します。
オーバーロードの一覧オーバーロードの一覧

名前 説明
IpcClientChannel () IpcServerChannel クラス新しインスタンス初期化します。
IpcClientChannel (IDictionary, IClientChannelSinkProvider) 構成プロパティシンク指定して、IpcClientChannel クラス新しインスタンス初期化します。
IpcClientChannel (String, IClientChannelSinkProvider) 名前とシンク指定してIpcClientChannel クラス新しインスタンス初期化します。
参照参照

関連項目

IpcClientChannel クラス
IpcClientChannel メンバ
System.Runtime.Remoting.Channels.Ipc 名前空間



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「IpcClientChannel コンストラクタ ()」の関連用語

IpcClientChannel コンストラクタ ()のお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



IpcClientChannel コンストラクタ ()のページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS