1:   Imports System.Web
2:   Imports BarcodeNETWorkShop.Core
3:   Imports BarcodeNETWorkShop
4:   Public Class ImageHandler
5:       Implements System.Web.IHttpHandler
6:       Dim BarcodeNETImage1 As BarcodeNETImage = New BarcodeNETImage
7:  
8:       Public ReadOnly Property IsReusable() As Boolean Implements System.Web.IHttpHandler.IsReusable
9:           Get
10:               Return True
11:           End Get
12:       End Property
13:  
14:       Public Sub ProcessRequest(ByVal context As System.Web.HttpContext) Implements System.Web.IHttpHandler.ProcessRequest
15:           BarcodeNETImage1.DrawBarcodeByQueryString(context)
16:       End Sub
17:   End Class

This page was automatically generated by SharpDevelop.