IAudioInputNode IAudioInputNode IAudioInputNode IAudioInputNode Interface

Definition

Defines an audio input node.

public : interface IAudioInputNodepublic interface IAudioInputNodePublic Interface IAudioInputNode// You can use this interface in JavaScript.
Inheritance
IClosableIDisposableIDisposableIDisposable
IAudioInputNodeIAudioInputNodeIAudioInputNodeIAudioInputNode
Attributes
Windows 10 requirements
Device family
Windows 10 (introduced v10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)

Inherited Members

Inherited methods

Inherited properties

Properties

OutgoingConnections OutgoingConnections OutgoingConnections OutgoingConnections

Gets outgoing connections for the audio input node.

public : IVectorView<AudioGraphConnection> OutgoingConnections { get; }public IReadOnlyList<AudioGraphConnection> OutgoingConnections { get; }Public ReadOnly Property OutgoingConnections As IReadOnlyList<AudioGraphConnection>// You can use this property in JavaScript.
Value
IVectorView<AudioGraphConnection> IReadOnlyList<AudioGraphConnection> IReadOnlyList<AudioGraphConnection> IReadOnlyList<AudioGraphConnection>

A collection of audio graph connection objects representing the outgoing connections.

Methods

AddOutgoingConnection(IAudioNode) AddOutgoingConnection(IAudioNode) AddOutgoingConnection(IAudioNode) AddOutgoingConnection(IAudioNode)

Adds an outgoing connection to the audio input node.

public : void AddOutgoingConnection(IAudioNode destination)public void AddOutgoingConnection(IAudioNode destination)Public Function AddOutgoingConnection(destination As IAudioNode) As void// You can use this method in JavaScript.
Parameters
destination
IAudioNode IAudioNode IAudioNode IAudioNode

The destination node for the connection.

See Also

AddOutgoingConnection(IAudioNode, Double) AddOutgoingConnection(IAudioNode, Double) AddOutgoingConnection(IAudioNode, Double) AddOutgoingConnection(IAudioNode, Double)

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

public : void AddOutgoingConnection(IAudioNode destination, double gain)public void AddOutgoingConnection(IAudioNode destination, Double gain)Public Function AddOutgoingConnection(destination As IAudioNode, gain As Double) As void// You can use this method in JavaScript.
Parameters
destination
IAudioNode IAudioNode IAudioNode IAudioNode

The destination node for the connection.

gain
double Double Double Double

A value indicating the gain associated with the connection.

See Also

RemoveOutgoingConnection(IAudioNode) RemoveOutgoingConnection(IAudioNode) RemoveOutgoingConnection(IAudioNode) RemoveOutgoingConnection(IAudioNode)

Removes an outgoing connection from the audio input node.

public : void RemoveOutgoingConnection(IAudioNode destination)public void RemoveOutgoingConnection(IAudioNode destination)Public Function RemoveOutgoingConnection(destination As IAudioNode) As void// You can use this method in JavaScript.
Parameters
destination
IAudioNode IAudioNode IAudioNode IAudioNode

The destination node for the connection.

See Also