Advertisement
Guest User

Untitled

a guest
Sep 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.84 KB | None | 0 0
  1. Namespace Classes.EventArguments
  2.     ''' <summary>
  3.     '''     Contains data for current connection time stamp.
  4.     ''' </summary>
  5.     Public Class TimeStampEventArgs
  6.         Inherits EventArgs
  7.         ''' <summary>
  8.         '''     Gets information about the time stamp.
  9.         ''' </summary>
  10.         ''' <value>
  11.         '''     A <see cref="TimeStampValue" /> object representing the time stamp.
  12.         ''' </value>
  13.         Friend ReadOnly Property TimeStampValue As String
  14.         ''' <summary>
  15.         '''     Creates a new instance of the <see cref="TimeStampEventArgs" /> class.
  16.         ''' </summary>
  17.         ''' <param name="timeStamp">
  18.         '''     The connection time stamp.
  19.         ''' </param>
  20.         Public Sub New(timeStamp As String)
  21.             Me.TimeStampValue = timeStamp
  22.         End Sub
  23.     End Class
  24. End Namespace
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement