本文整理汇总了C#中IWavePlayer.GetType方法的典型用法代码示例。如果您正苦于以下问题:C# IWavePlayer.GetType方法的具体用法?C# IWavePlayer.GetType怎么用?C# IWavePlayer.GetType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IWavePlayer
的用法示例。
在下文中一共展示了IWavePlayer.GetType方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InitializeNAudioLibrary
/// <summary>
/// Initialize the NAudio framework
/// </summary>
private void InitializeNAudioLibrary()
{
try
{
m_latency = Properties.Settings.Default.Latency;
string soundOutput;
m_logger.Info("OS Info: " + Environment.OSVersion.ToString());
if (Environment.OSVersion.Version.Major < 6)
soundOutput = "WaveOut"; // XP
else
soundOutput = "WasapiOut"; // Vista/7
// Properties.Settings.Default.SoundOutput;
m_logger.Info("Wave Output Device that was requested: {0}", soundOutput);
// Set the wave output device based on the configuration setting
switch (soundOutput)
{
case "WasapiOut":
m_waveOutDevice = new WasapiOut(global::NAudio.CoreAudioApi.AudioClientShareMode.Shared, m_latency);
break;
case "DirectSound":
m_waveOutDevice = new DirectSoundOut(m_latency);
break;
default:
case "WaveOut":
m_waveOutDevice = new WaveOut();
break;
}
m_logger.Info("Wave Output Device that is actually being used: {0}", m_waveOutDevice.GetType().ToString());
}
catch (Exception driverCreateException)
{
m_logger.ErrorException("NAudio Driver Creation Failed", driverCreateException);
throw driverCreateException;
}
}