IpcServerChannel.ChannelData プロパティ
アセンブリ: System.Runtime.Remoting (system.runtime.remoting.dll 内)
 構文
構文 解説
解説System.Object クラスのインスタンスとして返されますが、このプロパティの値は、IpcServerChannel オブジェクトが待機するチャネルを記述した ChannelDataStore のインスタンスにキャストできます。
 使用例
使用例ChannelData プロパティを使用する方法を次のコード例に示します。
// Show the URIs associated with the channel. System.Runtime.Remoting.Channels.ChannelDataStore channelData = (System.Runtime.Remoting.Channels.ChannelDataStore) serverChannel.ChannelData; foreach (string uri in channelData.ChannelUris) { Console.WriteLine("The channel URI is {0}.", uri); }
// Show the URIs associated with the channel. System::Runtime::Remoting::Channels::ChannelDataStore^ channelData = static_cast<System::Runtime::Remoting::Channels::ChannelDataStore^> (serverChannel->ChannelData); System::Collections::IEnumerator^ myEnum = channelData->ChannelUris->GetEnumerator(); while ( myEnum->MoveNext() ) { String^ uri = safe_cast<String^>( myEnum->Current ); Console::WriteLine( L"The channel URI is {0}.",uri ); }
 .NET Framework のセキュリティ
.NET Framework のセキュリティ プラットフォーム
プラットフォームWindows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
 バージョン情報
バージョン情報 参照
参照Weblioに収録されているすべての辞書からIpcServerChannel.ChannelData プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からIpcServerChannel.ChannelData プロパティ
                    を検索
                     全ての辞書からIpcServerChannel.ChannelData プロパティ
                    を検索
                - IpcServerChannel.ChannelData プロパティのページへのリンク

 
                             
                    


