Esempio n. 1
0
		internal MidiException (MidiError code) : base (code.ToString ())
		{
			ErrorCode = code;
		}
Esempio n. 2
0
		internal MidiException (MidiError code) : base (code == MidiError.NotPermitted ? "NotPermitted, does your app Info.plist include the 'audio' key in the UIBackgroundModes section?" : code.ToString ())
		{
			ErrorCode = code;
		}