IClientChannelSinkProvider.CreateSink(IChannelSender, String, Object) Méthode
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.
Crée une chaîne de récepteurs.
public:
System::Runtime::Remoting::Channels::IClientChannelSink ^ CreateSink(System::Runtime::Remoting::Channels::IChannelSender ^ channel, System::String ^ url, System::Object ^ remoteChannelData);
public System.Runtime.Remoting.Channels.IClientChannelSink CreateSink (System.Runtime.Remoting.Channels.IChannelSender channel, string url, object remoteChannelData);
[System.Security.SecurityCritical]
public System.Runtime.Remoting.Channels.IClientChannelSink CreateSink (System.Runtime.Remoting.Channels.IChannelSender channel, string url, object remoteChannelData);
abstract member CreateSink : System.Runtime.Remoting.Channels.IChannelSender * string * obj -> System.Runtime.Remoting.Channels.IClientChannelSink
[<System.Security.SecurityCritical>]
abstract member CreateSink : System.Runtime.Remoting.Channels.IChannelSender * string * obj -> System.Runtime.Remoting.Channels.IClientChannelSink
Public Function CreateSink (channel As IChannelSender, url As String, remoteChannelData As Object) As IClientChannelSink
Paramètres
- channel
- IChannelSender
Canal pour lequel la chaîne de récepteurs en cours est construite.
- url
- String
URL de l'objet à connecter. Ce paramètre peut être null
si la connexion est entièrement basée sur les informations contenues dans le paramètre remoteChannelData
.
- remoteChannelData
- Object
Objet de données de canal décrivant un canal sur le serveur distant.
Retours
Premier récepteur de la nouvelle chaîne de récepteurs de canal, ou null
indiquant que ce fournisseur ne doit pas ou ne peut pas fournir une connexion pour ce point de terminaison.
- Attributs
Exceptions
L'appelant immédiat n'a pas d'autorisation d'accès à l'infrastructure.
Exemples
L’exemple de code suivant illustre une implémentation de cette méthode.
virtual IClientChannelSink^ CreateSink( IChannelSender^ channel, String^ url, Object^ remoteChannelData )
{
Console::WriteLine( "Creating ClientSink for {0}", url );
// Create the next sink in the chain.
IClientChannelSink^ nextSink = nextProvider->CreateSink( channel, url, remoteChannelData );
// Hook our sink up to it.
return (gcnew ClientSink( nextSink ));
}
public IClientChannelSink CreateSink (IChannelSender channel, String url, Object remoteChannelData)
{
Console.WriteLine("Creating ClientSink for {0}", url);
// Create the next sink in the chain.
IClientChannelSink nextSink = nextProvider.CreateSink(channel, url, remoteChannelData);
// Hook our sink up to it.
return( new ClientSink(nextSink) );
}
Remarques
Lorsque la CreateSink méthode est appelée, elle crée son propre récepteur de canal, transfère l’appel CreateSink au fournisseur récepteur suivant de la chaîne (le cas échéant), et s’assure que le récepteur suivant et le récepteur actuel sont liés.