AudioSubmixNode.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 outgoing connections from the audio submix 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 = audioSubmixNode.outgoingConnections;
Public ReadOnly Property OutgoingConnections As IReadOnlyList(Of AudioGraphConnection)
Property Value
A collection of objects representing audio graph connections.
Implements
Remarks
This list of outgoing connections is read-only. Call AddOutgoingConnection to connect this node to another node.