我有发挥使用的SoundPlayer类波形文件的应用程序。 然而,当我发布在IIS中的应用程序,该文件将无法播放。 要使用我添加了一个参考windows.dll的声音播放类,它可能会干扰?
public void PlaySound()
{
try
{
while (1 == 1)
{
List<string> distinctMusic = GetMusicFile.Distinct().ToList();
for (int i = 0; i < distinctMusic.Count; i++)
{
player.SoundLocation = distinctMusic[i];
player.Play();
Thread.Sleep(GetMusicDuration[i] * 1000);
player.Stop();
}
player.Dispose();
}
}
catch (Exception e)
{
//log.LogTxt(e.ToString());
}
}
谁能帮我? 谢谢 !