ChannelServices.RegisteredChannels Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une liste des canaux actuellement inscrits.
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()
Valeur de propriété
IChannel[]
Tableau de tous les canaux actuellement inscrits.
- Attributs
Exceptions
L'appelant immédiat n'a pas d'autorisation d'accès à l'infrastructure.
Exemples
// 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
S’applique à
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage (pull requests). Pour plus d’informations, consultez notre guide du contributeur.