// // // Copyright (C) Microsoft. All rights reserved. // // using System.ServiceModel; namespace ChatObjectModel { [ServiceContract] public interface IProviderCallback { [OperationContract(IsOneWay = true)] void ResponseReceived(string user, string text); } }