using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.ServiceModel; using System.ServiceModel.Web; using System.Text; namespace bsmd.dbh.ResponseService { // NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IService1" in both code and config file together. [ServiceContract] public interface IResponseService { /* [OperationContract] string GetData(int value); */ /// /// Da die Schnittstelle nur mit einem .xsd definiert war ist die Signatur der Methode fraglich /// Sicher ist Void, weniger sicher der Namen und der Name des Parameters. Dessen Type allerdings schon. /// [OperationContract] [XmlSerializerFormatAttribute()] void NSWResponse(bsmd.dbh.response.Root root); } }