AudioFrameInputNode.AddOutgoingConnection 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.
Surcharges
AddOutgoingConnection(IAudioNode) |
Ajoute une connexion sortante au nœud d’entrée de trame audio. |
AddOutgoingConnection(IAudioNode, Double) |
Ajoute une connexion sortante avec gain au nœud d’entrée de trame audio. |
AddOutgoingConnection(IAudioNode)
Ajoute une connexion sortante au nœud d’entrée de trame audio.
public:
virtual void AddOutgoingConnection(IAudioNode ^ destination) = AddOutgoingConnection;
/// [Windows.Foundation.Metadata.Overload("AddOutgoingConnection")]
void AddOutgoingConnection(IAudioNode const& destination);
[Windows.Foundation.Metadata.Overload("AddOutgoingConnection")]
public void AddOutgoingConnection(IAudioNode destination);
function addOutgoingConnection(destination)
Public Sub AddOutgoingConnection (destination As IAudioNode)
Paramètres
- destination
- IAudioNode
Nœud de destination pour la connexion.
Implémente
- Attributs
Remarques
L’autre surcharge de cette méthode vous permet de spécifier une valeur de gain appliquée aux valeurs audio passant par la nouvelle connexion.
Voir aussi
S’applique à
AddOutgoingConnection(IAudioNode, Double)
Ajoute une connexion sortante avec gain au nœud d’entrée de trame audio.
public:
virtual void AddOutgoingConnection(IAudioNode ^ destination, double gain) = AddOutgoingConnection;
/// [Windows.Foundation.Metadata.Overload("AddOutgoingConnectionWithGain")]
void AddOutgoingConnection(IAudioNode const& destination, double const& gain);
[Windows.Foundation.Metadata.Overload("AddOutgoingConnectionWithGain")]
public void AddOutgoingConnection(IAudioNode destination, double gain);
function addOutgoingConnection(destination, gain)
Public Sub AddOutgoingConnection (destination As IAudioNode, gain As Double)
Paramètres
- destination
- IAudioNode
Nœud de destination pour la connexion.
- gain
-
Double
double
Valeur indiquant le gain associé à la connexion. Il s’agit d’un multiplicateur scalaire du signal audio. La valeur par défaut est 1,0.
Implémente
- Attributs