DetachEssentialHandlers() 공개 메소드

public DetachEssentialHandlers ( ) : void
리턴 void
예제 #1
0
 /// <summary>
 /// Release the html container resources.
 /// </summary>
 protected override void Dispose(bool disposing)
 {
     if (htmlContainer != null)
     {
         this.timer01.Stop();
         htmlContainer.DetachEssentialHandlers();
         htmlContainer.Dispose();
         htmlContainer = null;
     }
     base.Dispose(disposing);
 }