File size: 329 Bytes
b1b3bae |
1 2 3 4 5 6 7 8 9 10 11 12 |
Public Interface IAnalyticsProvider
Sub RegisterEvent(name As String, description As String, data As Dictionary(Of String, String))
Sub RegisterError(name As String, description As String, ex As Exception, data As Dictionary(Of String, String))
Sub Initialize()
Sub SetMainForm(f As Object)
End Interface
|