AudioFileInputNode.AddOutgoingConnection 方法

定义

重载

AddOutgoingConnection(IAudioNode)

将传出连接添加到音频文件输入节点。

AddOutgoingConnection(IAudioNode, Double)

将具有增益的传出连接添加到音频文件输入节点。

AddOutgoingConnection(IAudioNode)

将传出连接添加到音频文件输入节点。

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)

参数

destination
IAudioNode

连接的目标节点。

实现

属性

注解

此方法的另一个重载允许指定应用于通过新连接的音频值的增益值。

另请参阅

适用于

AddOutgoingConnection(IAudioNode, Double)

将具有增益的传出连接添加到音频文件输入节点。

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)

参数

destination
IAudioNode

连接的目标节点。

gain
Double

double

一个值,该值指示与连接关联的增益。 这是音频信号的标量乘数。 默认值为 1.0。

实现

M:Windows.Media.Audio.IAudioInputNode.AddOutgoingConnection(Windows.Media.Audio.IAudioNode,System.Double) M:Windows.Media.Audio.IAudioInputNode.AddOutgoingConnection(Windows.Media.Audio.IAudioNode,double)
属性

另请参阅

适用于