Sorry if my question is so primitive. I'm a beginner in C# and I should use a COM Interface (.DLL) and implement it in my code. It's about a time attendant clock and I need to retrieve data out of its database. It uses some classes and my goal is to retrieve "Messages" out of it. The only documentation I have is this:
The “InsightClass” class contains the following:
Methods
...
o GetReviewMessages
o InsightClass
o Login
o Logout
o ReviewMessage
Review Events:
The ReviewMessage event will fire every time a new Review event is received in Insight.
Retrieving data: Using the “StartLiveReview” method will begin the receipt of new review messages from the Insight server, conversely, this process is ended with the “EndLiveReview” method. One can also retrieve a discrete set of Review data by means of the “GetReviewMessages” method. One specifies the desired date/time boundaries within which data is to be retrieved. Insight review:
The above methods will result in a collection of “InsightReview” objects. Using the “InsightReviewMessagesClass” class, one can obtain the current count of “InsightReview” objects and access individual “InsightReview” objects by means of the “Item” property. An “InsightReview” object is effectively a Review message. It has the following properties:
o ...
o Message
Could you please let me know how can I relate “GetReviewMessages” method to “InsightReview” objects within “InsightReviewMessagesClass” class in my code?
Thanks a heap in advance...