AudioRenderEffectsManager
AudioRenderEffectsManager
AudioRenderEffectsManager
AudioRenderEffectsManager
Class
Definition
Represent an audio render effects manager which can be used to discover the audio processing chain on a device for a specific media category and audio processing mode.
public : sealed class AudioRenderEffectsManager : IAudioRenderEffectsManager, IAudioRenderEffectsManager2public sealed class AudioRenderEffectsManager : IAudioRenderEffectsManager, IAudioRenderEffectsManager2Public NotInheritable Class AudioRenderEffectsManager Implements IAudioRenderEffectsManager, IAudioRenderEffectsManager2// You can use this class in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
To create an instance of AudioRenderEffectsManager, call AudioEffectsManager.CreateAudioRenderEffectsManager.
See the Audio effects discovery sample for an example of how to query and monitor audio effects on render and capture audio devices.
Properties
EffectsProviderSettingsLabel EffectsProviderSettingsLabel EffectsProviderSettingsLabel EffectsProviderSettingsLabel
Gets the label that is associated with this audio effects provider setting.
public : PlatForm::String EffectsProviderSettingsLabel { get; }public string EffectsProviderSettingsLabel { get; }Public ReadOnly Property EffectsProviderSettingsLabel As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The string to use as the label for the audio effects provider setting.
EffectsProviderThumbnail EffectsProviderThumbnail EffectsProviderThumbnail EffectsProviderThumbnail
Gets the thumbnail image that is associated with this audio effects provider.
public : IRandomAccessStreamWithContentType EffectsProviderThumbnail { get; }public IRandomAccessStreamWithContentType EffectsProviderThumbnail { get; }Public ReadOnly Property EffectsProviderThumbnail As IRandomAccessStreamWithContentType// You can use this property in JavaScript.
- Value
- IRandomAccessStreamWithContentType IRandomAccessStreamWithContentType IRandomAccessStreamWithContentType IRandomAccessStreamWithContentType
The thumbnail image for the audio effects provider.
Methods
GetAudioRenderEffects() GetAudioRenderEffects() GetAudioRenderEffects() GetAudioRenderEffects()
Gets the list of audio effects on the device.
public : IVectorView<AudioEffect> GetAudioRenderEffects()public IReadOnlyList<AudioEffect> GetAudioRenderEffects()Public Function GetAudioRenderEffects() As IReadOnlyList( Of AudioEffect )// You can use this method in JavaScript.
The list of audio effects.
Events
AudioRenderEffectsChanged AudioRenderEffectsChanged AudioRenderEffectsChanged AudioRenderEffectsChanged
Occurs when audio process chain changes.
public : event TypedEventHandler AudioRenderEffectsChanged<AudioRenderEffectsManager, object>public event TypedEventHandler AudioRenderEffectsChanged<AudioRenderEffectsManager, object>Public Event AudioRenderEffectsChanged<AudioRenderEffectsManager, object>// You can use this event in JavaScript.