Axiom.Plugins.FreeImageCodecs.FreeImageCodec.Shutdown C# (CSharp) 메소드

Shutdown() 공개 정적인 메소드

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

Usage Example

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