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

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

IpcServerChannel コンストラクタ (IDictionary, IServerChannelSinkProvider)

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

チャネル プロパティシンク指定して、IpcServerChannel クラス新しインスタンス初期化します。

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

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

Dim instance As New IpcServerChannel(properties,
 sinkProvider)
public IpcServerChannel (
    IDictionary properties,
    IServerChannelSinkProvider sinkProvider
)
public:
IpcServerChannel (
    IDictionary^ properties, 
    IServerChannelSinkProvider^ sinkProvider
)
public IpcServerChannel (
    IDictionary properties, 
    IServerChannelSinkProvider sinkProvider
)
public function IpcServerChannel (
    properties : IDictionary, 
    sinkProvider : IServerChannelSinkProvider
)

パラメータ

properties

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

sinkProvider

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

解説解説
使用例使用例

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

// Create the server channel.
System.Collections.IDictionary properties = 
    new System.Collections.Hashtable();
properties["name"] = "ipc";
properties["priority"] = "20";
properties["portName"] = "localhost:9090";
IpcServerChannel serverChannel = 
    new IpcServerChannel(properties, null); 
// Create the server channel.
System::Collections::IDictionary^ properties = gcnew System::Collections::Hashtable;
properties->default[ L"name" ] = L"ipc";
properties->default[ L"priority" ] = L"20";
properties->default[ L"portName" ] = L"localhost:9090";
IpcServerChannel^ serverChannel = gcnew IpcServerChannel( properties, nullptr );

.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
IpcServerChannel クラス
IpcServerChannel メンバ
System.Runtime.Remoting.Channels.Ipc 名前空間
その他の技術情報
チャネルおよびフォーマッタ構成プロパティ

IpcServerChannel コンストラクタ (IDictionary, IServerChannelSinkProvider, CommonSecurityDescriptor)

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

チャネル プロパティシンク、およびセキュリティ記述子指定して、IpcServerChannel クラス新しインスタンス初期化します。

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

Public Sub New ( _
    properties As IDictionary, _
    sinkProvider As IServerChannelSinkProvider, _
    securityDescriptor As CommonSecurityDescriptor _
)
Dim properties As IDictionary
Dim sinkProvider As IServerChannelSinkProvider
Dim securityDescriptor As CommonSecurityDescriptor

Dim instance As New IpcServerChannel(properties,
 sinkProvider, securityDescriptor)
public IpcServerChannel (
    IDictionary properties,
    IServerChannelSinkProvider sinkProvider,
    CommonSecurityDescriptor securityDescriptor
)
public:
IpcServerChannel (
    IDictionary^ properties, 
    IServerChannelSinkProvider^ sinkProvider, 
    CommonSecurityDescriptor^ securityDescriptor
)
public IpcServerChannel (
    IDictionary properties, 
    IServerChannelSinkProvider sinkProvider, 
    CommonSecurityDescriptor securityDescriptor
)
public function IpcServerChannel (
    properties : IDictionary, 
    sinkProvider : IServerChannelSinkProvider, 
    securityDescriptor : CommonSecurityDescriptor
)

パラメータ

properties

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

sinkProvider

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

securityDescriptor

チャネルによって使用される CommonSecurityDescriptor。

解説解説
.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
IpcServerChannel クラス
IpcServerChannel メンバ
System.Runtime.Remoting.Channels.Ipc 名前空間
その他の技術情報
チャネルおよびフォーマッタ構成プロパティ

IpcServerChannel コンストラクタ

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

名前 説明
IpcServerChannel (String) IPC ポート名を指定して IpcServerChannel クラス新しインスタンス初期化します。
IpcServerChannel (IDictionary, IServerChannelSinkProvider) チャネル プロパティシンク指定してIpcServerChannel クラス新しインスタンス初期化します。
IpcServerChannel (String, String) チャネル名と IPC ポート名を指定してIpcServerChannel クラス新しインスタンス初期化します。
IpcServerChannel (IDictionary, IServerChannelSinkProvider, CommonSecurityDescriptor) チャネル プロパティシンク、およびセキュリティ記述子指定してIpcServerChannel クラス新しインスタンス初期化します。
IpcServerChannel (String, String, IServerChannelSinkProvider) チャネル名、IPC ポート名、およびシンク指定してIpcServerChannel クラス新しインスタンス初期化します。
参照参照

関連項目

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

IpcServerChannel コンストラクタ (String, String, IServerChannelSinkProvider)

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

チャネル名、IPC ポート名、およびシンク指定して、IpcServerChannel クラス新しインスタンス初期化します。

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

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

Dim instance As New IpcServerChannel(name,
 portName, sinkProvider)
public IpcServerChannel (
    string name,
    string portName,
    IServerChannelSinkProvider sinkProvider
)
public:
IpcServerChannel (
    String^ name, 
    String^ portName, 
    IServerChannelSinkProvider^ sinkProvider
)
public IpcServerChannel (
    String name, 
    String portName, 
    IServerChannelSinkProvider sinkProvider
)
public function IpcServerChannel (
    name : String, 
    portName : String, 
    sinkProvider : IServerChannelSinkProvider
)

パラメータ

name

チャネルの名前。

portName

チャネルによって使用される IPC ポートの名前。

sinkProvider

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

解説解説
使用例使用例

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

// Create the server channel.
string name = "ipc";
string portName = "localhost:9090";
IServerChannelSinkProvider sinkProvider = null;
IpcServerChannel serverChannel = 
    new IpcServerChannel(name, portName, sinkProvider);
// Create the server channel.
String^ name = L"ipc";
String^ portName = L"localhost:9090";
IServerChannelSinkProvider^ sinkProvider = nullptr;
IpcServerChannel^ serverChannel = gcnew IpcServerChannel( name,portName,sinkProvider
 );

.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
IpcServerChannel クラス
IpcServerChannel メンバ
System.Runtime.Remoting.Channels.Ipc 名前空間

IpcServerChannel コンストラクタ (String)

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

IPC ポート名を指定して IpcServerChannel クラス新しインスタンス初期化します。

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

Public Sub New ( _
    portName As String _
)
Dim portName As String

Dim instance As New IpcServerChannel(portName)
public IpcServerChannel (
    string portName
)
public:
IpcServerChannel (
    String^ portName
)
public IpcServerChannel (
    String portName
)
public function IpcServerChannel (
    portName : String
)

パラメータ

portName

チャネルによって使用される IPC ポートの名前。

使用例使用例

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

// Create and register an IPC channel
IpcServerChannel serverChannel = new IpcServerChannel("remote");
ChannelServices.RegisterChannel(serverChannel);
// Create and register an IPC channel
IpcServerChannel^ serverChannel = gcnew IpcServerChannel( L"remote" );
ChannelServices::RegisterChannel( serverChannel );
// Create and register an IPC channel
IpcServerChannel serverChannel = new IpcServerChannel("remote");
ChannelServices.RegisterChannel(serverChannel);
.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
IpcServerChannel クラス
IpcServerChannel メンバ
System.Runtime.Remoting.Channels.Ipc 名前空間

IpcServerChannel コンストラクタ (String, String)

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

チャネル名と IPC ポート名を指定して、IpcServerChannel クラス新しインスタンス初期化します。

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

Public Sub New ( _
    name As String, _
    portName As String _
)
Dim name As String
Dim portName As String

Dim instance As New IpcServerChannel(name,
 portName)
public IpcServerChannel (
    string name,
    string portName
)
public:
IpcServerChannel (
    String^ name, 
    String^ portName
)
public IpcServerChannel (
    String name, 
    String portName
)
public function IpcServerChannel (
    name : String, 
    portName : String
)

パラメータ

name

チャネルの名前。

portName

チャネルによって使用される IPC ポートの名前。

解説解説
使用例使用例

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

// Create the server channel.
string name = "ipc";
string portName = "localhost:9090";
IpcServerChannel serverChannel = 
    new IpcServerChannel(name, portName);
// Create the server channel.
String^ name = L"ipc";
String^ portName = L"localhost:9090";
IpcServerChannel^ serverChannel = gcnew IpcServerChannel( name,portName );

.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
IpcServerChannel クラス
IpcServerChannel メンバ
System.Runtime.Remoting.Channels.Ipc 名前空間



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

辞書ショートカット

すべての辞書の索引

「IpcServerChannel コンストラクタ」の関連用語

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

   

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



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

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

©2025 GRAS Group, Inc.RSS