WCF WebService - Is there a way to determine that client received response?
问题 Lets say I have a WCF service that a client can use to receive message from some server side message queue. As an example, lets say there is a server-side queue of email in a data table: ID | MESSAGE_TEXT | SENT ------------------------ 1 | Hi! | N 2 | A 2nd Msg | N Lets define our service as: [OperationContract] public List<string> GetMessages() { var messages = LoadMessagesFromDb(); var messageText = (from m in messages select m.MessageText).ToArray(); return messageText; } Lets assume that