In SIP/T-Server
eventError = (Genesyslab.Platform.Voice.Protocols.TServer.Events.EventError)eventResponse;
string errDescription = TServerEnumDescription.GetDescription(typeof(Errors), eventError.ErrorCode);
How can I get the same thing for StatServer? As I tried
eventError2 = (Genesyslab.Platform.Reporting.Protocols.StatServer.Events.EventError)eventResponse;
//string errDescription = StatServerEnumDescription.GetDescription(typeof(Errors)eventError2.ErrorCode); //Wrong
The statement above is wrong.