Menu

[r5]: / trunk / source / DBVisualizer / QueryResult.vb  Maximize  Restore  History

Download this file

43 lines (33 with data), 940 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
''' <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