In this blog, we can discuss on how to use a QueryStringConverter class using a simple VB.Net application. 1. Lets start by defining the service contract method in the interface <OperationContract()> <WebGet(BodyStyle:=WebMessageBodyStyle.Bare,RequestFormat:=WebMessageFormat.Xml, ResponseFormat:=WebMessageFormat.Xml, UriTemplate:=”WCFService?SumA={SumA}”)> Function WCFservice(ByVal SumA() As Integer) As Integer 2. Once the interface is defined, we can implement the interface and add code […]
Manju Kumaravel