AudioDeviceInputNode.OutgoingConnections Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the list of outgoing connections from the audio device input node to other nodes in the audio graph.
public:
property IVectorView<AudioGraphConnection ^> ^ OutgoingConnections { IVectorView<AudioGraphConnection ^> ^ get(); };
IVectorView<AudioGraphConnection> OutgoingConnections();
public IReadOnlyList<AudioGraphConnection> OutgoingConnections { get; }
var iVectorView = audioDeviceInputNode.outgoingConnections;
Public ReadOnly Property OutgoingConnections As IReadOnlyList(Of AudioGraphConnection)
Property Value
A collection of AudioGraphConnection objects representing the supported connections.
Implements
Remarks
This list of outgoing connections is read-only. Call AddOutgoingConnection to connect this node to another node.