ChannelServices.RegisteredChannels プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > ChannelServices.RegisteredChannels プロパティの意味・解説 

ChannelServices.RegisteredChannels プロパティ

現在登録されているチャネルリスト取得します

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

Public Shared ReadOnly Property
 RegisteredChannels As IChannel()
Dim value As IChannel()

value = ChannelServices.RegisteredChannels
public static IChannel[] RegisteredChannels
 { get; }
public:
static property array<IChannel^>^ RegisteredChannels {
    array<IChannel^>^ get ();
}
/** @property */
public static IChannel[] get_RegisteredChannels
 ()
public static function get
 RegisteredChannels () : IChannel[]

プロパティ
現在登録されているすべてのチャネル配列

例外例外
使用例使用例
' 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
// 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.
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
 );

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



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

辞書ショートカット

すべての辞書の索引

ChannelServices.RegisteredChannels プロパティのお隣キーワード
検索ランキング

   

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



ChannelServices.RegisteredChannels プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

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

©2024 GRAS Group, Inc.RSS