Creating the Arguments
Here is a sample class which has inherited
from EventArgs, it is the one in the HTTPModule article -
<Serializable()>
Public
Class
BrowserEventArgs : Inherits
EventArgs
Public BrowserName
As
String
Public
Sub
New(ByVal
BrowserID As
String)
BrowserName = BrowserID
End
Sub
End
Class |