Banshee.Collection.Database.DatabaseImportManager.OnImportResult C# (CSharp) Method

OnImportResult() protected method

protected OnImportResult ( DatabaseTrackInfo track, string path, Exception error ) : void
track DatabaseTrackInfo
path string
error System.Exception
return void
        protected virtual void OnImportResult (DatabaseTrackInfo track, string path, Exception error)
        {
            DatabaseImportResultHandler handler = ImportResult;
            if (handler != null) {
                handler (this, new DatabaseImportResultArgs (track, path, error));
            }
        }