27 lines
649 B
C#
Raw Normal View History

2024-06-07 00:47:07 +02:00
using System;
namespace NAudio.CoreAudioApi
{
/// <summary>
/// The ERole enumeration defines constants that indicate the role
/// that the system has assigned to an audio endpoint device
/// </summary>
public enum Role
{
/// <summary>
/// Games, system notification sounds, and voice commands.
/// </summary>
Console,
/// <summary>
/// Music, movies, narration, and live music recording
/// </summary>
Multimedia,
/// <summary>
/// Voice communications (talking to another person).
/// </summary>
Communications,
}
}