DetachEssentialHandlers() public method

public DetachEssentialHandlers ( ) : void
return 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);
 }