IAudioInputNode.AddOutgoingConnection Method

Definition

Overloads

AddOutgoingConnection(IAudioNode)

Adds an outgoing connection to the audio input node.

AddOutgoingConnection(IAudioNode, Double)

Adds an outgoing connection with gain to the audio input node.

AddOutgoingConnection(IAudioNode)

Adds an outgoing connection to the audio input node.

public:
 void AddOutgoingConnection(IAudioNode ^ destination);
/// [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)

Parameters

destination
IAudioNode

The destination node for the connection.

Attributes

See also

Applies to

AddOutgoingConnection(IAudioNode, Double)

Adds an outgoing connection with gain to the audio input node.

public:
 void AddOutgoingConnection(IAudioNode ^ destination, double gain);
/// [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)

Parameters

destination
IAudioNode

The destination node for the connection.

gain
Double

double

A value indicating the gain associated with the connection.

Attributes

See also

Applies to