Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void
예제 #1
0
 protected virtual void Dispose(bool disposing)
 {
     if (disposing)
     {
         if (stats != null)
         {
             stats.Dispose();
         }
         if (includeCache != null)
         {
             includeCache.Dispose();
         }
         if (outputCache != null)
         {
             outputCache.Dispose();
         }
     }
 }