c# Programming Glossary: imyservice_callback
Handling WCF events in another process http://stackoverflow.com/questions/8889051/handling-wcf-events-in-another-process with a callback contract ServiceContract public interface IMyService_Callback OperationContract IsOneWay true void NotifyClients string message.. string message ServiceContract CallbackContract typeof IMyService_Callback public interface IMyService OperationContract bool Subscribe.. public class MyService IMyService private List IMyService_Callback callbacks public MyService this.callbacks new List IMyService_Callback..
|