Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

AudioFileInputNode.EffectDefinitions Property

Definition

Namespace:
Windows.Media.Audio

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 effect definitions for the audio file input node. The effects in the list process audio data that flows through the node in the order in which they appear in the list.

public:
 property IVector<IAudioEffectDefinition ^> ^ EffectDefinitions { IVector<IAudioEffectDefinition ^> ^ get(); };
IVector<IAudioEffectDefinition> EffectDefinitions();
public IList<IAudioEffectDefinition> EffectDefinitions { get; }
var iVector = audioFileInputNode.effectDefinitions;
Public ReadOnly Property EffectDefinitions As IList(Of IAudioEffectDefinition)

Property Value

The list of effect definitions for the node.

Implements

Remarks

To add an audio effect to the node, add an object that implements IAudioEffectDefinition to the EffectDefinitions property. You can disable effects by passing a previously added effect definition to the DisableEffectsByDefinition method. Reenable a disabled effect by passing the definition to EnableEffectsByDefinition.

Several platform-provided effects can be found in the Windows.Media.Audio namespace. These include:

Also, you can create your own custom audio effects by creating a Windows Runtime component that implements the IBasicAudioEffect interface. For a walkthrough of creating a custom audio effect, see Custom audio effects.

Applies to

See also


Feedback

Was this page helpful?