Chirp.Radio.Agent.AudioPlayer.AudioPlayer C# (CSharp) 메소드

AudioPlayer() 공개 메소드

AudioPlayer instances can share the same process. Static fields can be used to share state between AudioPlayer instances or to communicate with the Audio Streaming agent.
public AudioPlayer ( ) : System
리턴 System
        public AudioPlayer()
        {
            if (!_classInitialized)
            {
                _classInitialized = true;
                // Subscribe to the managed exception handler
                Deployment.Current.Dispatcher.BeginInvoke(delegate
                {
                    Application.Current.UnhandledException += AudioPlayer_UnhandledException;
                });
            }
        }