Imports System Imports System.ComponentModel Imports System.Web.UI Public Class MyCustomControl Inherits Control Private license As License Public Sub New() license = LicenseManager.Validate (GetType(MyCustomControl), Me) End Sub Public Overloads Overrides Sub Dispose() If Not (license Is Nothing) Then license.Dispose() license = Nothing End If End Sub End Class