Axiom.Plugins.FreeImageCodecs.FreeImageCodec.Shutdown C# (CSharp) Méthode

Shutdown() public static méthode

public static Shutdown ( ) : void
Résultat void
		public static void Shutdown()
		{
			foreach ( ICodec codec in _codecList )
			{
				CodecManager.Instance.UnregisterCodec( codec );
			}
			_codecList.Clear();
			FI.FreeImageEngine.Message -= FreeImageLoadErrorHandler;
		}

Usage Example

Exemple #1
0
 /// <summary>
 ///    Called when the plugin is stopped.
 /// </summary>
 public void Shutdown()
 {
     FreeImageCodec.Shutdown();
 }