Author Message
FatihCEVIK
Joined: Nov 12, 2013
Messages: 7
Offline
Hi,

Is there any simple sample how to get notifications and event responses - or how to implement POMAgentHandlerInterface to handling events. For Exp: AgentLogin and Agent Login Response or any other notification)

There is no sample on documents.(using PM3 dlls on .NET platform with C#)

Thanks in advance
Fatih
FatihCEVIK
Joined: Nov 12, 2013
Messages: 7
Offline
solved
MdAyub
Joined: Nov 19, 2013
Messages: 17
Offline
Even I'm looking for the same, how it is solved? Please quote some sample.
DavidSierra
Joined: Jun 29, 2011
Messages: 6
Offline
How it is solved? Please quote some sample.
ArnolddelosSantos3
Joined: Feb 3, 2014
Messages: 3
Offline
POMAgentHandlerInterface is an abstract class so what you can do is create a class and based from it. Then implement all the methods or only the event notifications you are interested.

Sample code snippet:

public class AgentEventHandler : POMAgentHandlerInterface
{

public override void AGTLogoffRESP(int result)
{
;
}

public override void AGTLogonRESP(int result)
{
;
}

}
Go to:   
Mobile view