FilterDemoFramework.SimplePlayEngine.SetSessionActive C# (CSharp) Method

SetSessionActive() static private method

static private SetSessionActive ( bool active ) : void
active bool
return void
		static void SetSessionActive (bool active)
		{
#if __IOS__
			var error = AVAudioSession.SharedInstance ().SetActive (active);
			if (error != null)
				throw new NSErrorException (error);
#endif
		}