ChannelServices.RegisteredChannels プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
現在登録されているチャネルのリストを取得します。
public:
static property cli::array <System::Runtime::Remoting::Channels::IChannel ^> ^ RegisteredChannels { cli::array <System::Runtime::Remoting::Channels::IChannel ^> ^ get(); };
public static System.Runtime.Remoting.Channels.IChannel[] RegisteredChannels { get; }
public static System.Runtime.Remoting.Channels.IChannel[] RegisteredChannels { [System.Security.SecurityCritical] get; }
static member RegisteredChannels : System.Runtime.Remoting.Channels.IChannel[]
[<get: System.Security.SecurityCritical>]
static member RegisteredChannels : System.Runtime.Remoting.Channels.IChannel[]
Public Shared ReadOnly Property RegisteredChannels As IChannel()
プロパティ値
IChannel[]
現在登録されているすべてのチャネルの配列。
- 属性
例外
直前の呼び出し元に、インフラストラクチャ アクセス許可がありません。
例
// Retrieve and print information about the registered channels.
array<IChannel^>^myIChannelArray = ChannelServices::RegisteredChannels;
for ( int i = 0; i < myIChannelArray->Length; i++ )
{
Console::WriteLine( "Name of Channel: {0}", myIChannelArray[ i ]->ChannelName );
Console::WriteLine( "Priority of Channel: {0}", myIChannelArray[ i ]->ChannelPriority );
}
// Retrieve and print information about the registered channels.
IChannel[] myIChannelArray = ChannelServices.RegisteredChannels;
for (int i=0; i<myIChannelArray.Length; i++)
{
Console.WriteLine("Name of Channel: {0}", myIChannelArray[i].ChannelName);
Console.WriteLine("Priority of Channel: {0}",
+myIChannelArray[i].ChannelPriority);
}
' Retrieve and print information about the registered channels.
Dim myIChannelArray As IChannel() = ChannelServices.RegisteredChannels
Dim i As Integer
For i = 0 To myIChannelArray.Length - 1
Console.WriteLine("Name of Channel: {0}", myIChannelArray(i).ChannelName)
Console.WriteLine("Priority of Channel: {0}", + myIChannelArray(i).ChannelPriority)
Next i
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET