EDataFlow Enumeration

Defines constants that indicate the direction in which audio data flows between an audio endpoint device and an application.

The GetDefaultAudioEndpoint(EDataFlow, ERole, IMMDevice), IMMDeviceEnumerator.EnumAudioEndpoints, IMMEndpoint.GetDataFlow, and IMMNotificationClient.OnDefaultDeviceChanged methods use the constants defined in the EDataFlow enumeration.

Definition

Namespace: DevCase.Win32.Enums
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public enum EDataFlow

Remarks

Members

Render 0 Audio rendering stream.

Audio data flows from the application to the audio endpoint device, which renders the stream.

Capture 1 Audio capture stream.

Audio data flows from the audio endpoint device that captures the stream, to the application.

All 2 Audio rendering or capture stream.

Audio data can flow either from the application to the audio endpoint device, or from the audio endpoint device to the application.

EDataFlow_enum_count 3 The number of members in the EDataFlow enumeration (not counting the EDataFlow_enum_count member).

See Also