''' <summary>
''' Simple class used to transfer data between the debugger and debugee side.
''' </summary>
<Serializable()> _
Friend Class QueryResult
Private mResultTable As DataTable
Public Property ResultTable() As DataTable
Get
Return mResultTable
End Get
Set(ByVal value As DataTable)
mResultTable = value
End Set
End Property
Private mException As Exception
Public Property Exception() As Exception
Get
Return mException
End Get
Set(ByVal value As Exception)
mException = value
End Set
End Property
Private mQueryTime As TimeSpan
Public Property QueryTime() As TimeSpan
Get
Return mQueryTime
End Get
Set(ByVal value As TimeSpan)
mQueryTime = value
End Set
End Property
End Class