private bool OnOtherCardTimeout() { _otherCardHandler = null; return(false); }
/// <summary> /// /// </summary> public void InsertOtherCard(OtherCardInsertedHandler handler, uint timeout) { _otherCardHandler = handler; GLib.Timeout.Add(timeout, new GLib.TimeoutHandler(OnOtherCardTimeout)); }