using System.ServiceModel; namespace TFS_Notification_Service { [ServiceContract(Namespace = "http://schemas.microsoft.com/TeamFoundation/2005/06/Services/Notification/03")] public interface ITfsEventSubscriber { [OperationContract( Action = "http://schemas.microsoft.com/TeamFoundation/2005/06/Services/Notification/03/Notify", ReplyAction = "*")] void Notify(string eventXml, string tfsIdentityXml); } }