I'm not sure whether this is a good question to be asked here or should I say that this question is more to C#.NET or to Genesys.
I'm developing an agent desktop by using Genesys (contact center solution provider) Platform SDK and C#.NET. Basically when I request to send something to the server, if the request is successful, then an event will be returned, as shown in below.
'EventInfo' ('2')
message attributes:
REQ_ID [int] = 402
USER_REQ_ID [int] = 0
TM_SERVER [int] = 1440495548
TM_LENGTH [int] = 1285
LONG_VALUE [int] = 0
STRING_VALUE [str] = "123"
'EventInfo' ('2')
message attributes:
REQ_ID [int] = 301
USER_REQ_ID [int] = 0
TM_SERVER [int] = 1440495553
TM_LENGTH [int] = 1290
LONG_VALUE [int] = 0
STRING_VALUE [str] = "456"
Based on the events above, I sent two requests at the same time and therefore it returned two EventInfo. I can get the event's REQ_ID by eventInfo.ReferenceID
, I can get the event's STRING_VALUE (which is the value that I want in this case and this value will be populate into a listview in my agent desktop) by eventInfo.StringValue
.
My problem is how can I retrieve the string value based on the event's ReferenceID? Unfortunately, there is no such thing like: eventInfo.ReferenceID(402).StringValue
and returns 123. Is there any similar way to get the value?
Actually this problem is more to C#. Here's how I solved my problem:
Firstly, I define a
dictionary
globally:The reason I used
dictionary
instead oflist
orarray
can refer to this.Next in my
EventInfo_Handler()
method, I wrote some statement like:Then insert the data into the listview accordingly.
Any feedback or enhancement on this solution is welcome.