-
Notifications
You must be signed in to change notification settings - Fork 127
Closed
Labels
questionMost likely not a bug, but a user needing help understanding something.Most likely not a bug, but a user needing help understanding something.
Description
Hi Skrusty and congratulations for the work!
I'm running tests with VS2013 and VB.NET Framework 4.0, but I have a problem with the lines:
private ManagerConnection manager = null;
manager = new ManagerConnection (address, port, user, password);
manager.UnhandledEvent + = new ManagerEventHandler (manager_Events);
in VB.NET I translated thus:
Private Sub Chiama2 ()
Dim Manag As AsterNET.Manager.ManagerConnection = New AsterNET.Manager.ManagerConnection (My.Settings.Asterisk_host, My.Settings.Asterisk_port, My.Settings.Asterisk_usr, My.Settings.Asterisk_psw)
Manag.UnhandledEvent = New Manager.ManagerEventHandler (AddressOf Event)
end Sub
Private Sub Event ()
'event handling code
end Sub
The problem is that "Manag.UnhandledEvent" is not a valid property ...
can you tell me why or how to fix it?
thanks a lot
Ghini
Metadata
Metadata
Assignees
Labels
questionMost likely not a bug, but a user needing help understanding something.Most likely not a bug, but a user needing help understanding something.