ATMLCommonLibrary.forms.ATMLXslTranslationForm.OnClosing C# (CSharp) Méthode

OnClosing() protected méthode

protected OnClosing ( CancelEventArgs e ) : void
e CancelEventArgs
Résultat void
        protected override void OnClosing( CancelEventArgs e )
        {
            try
            {
                if (!string.IsNullOrEmpty( _tempFileName ))
                    File.Delete( _tempFileName );
            }
            catch (Exception err)
            {
                /* Do Nothing */
            }
            base.OnClosing( e );
        }