ZAIN ULARIFEEN

ZAIN ULARIFEEN

  • 1.6k
  • 143
  • 150.2k

How to get data from the above webservice method an android

Aug 10 2017 8:52 AM
[WebMethod]
public string Grade()
{
DataTable dt = new DataTable();
dt = ConnectionClass.Selectcommand("select ProductName,PurchasePrice from Product");
resultC res = new resultC { result = dt };
string json = JsonConvert.SerializeObject(res);
return json;
}
 
How to get data from the above webservice method an android using Soap Method. please, help me 

Answers (1)