ZAIN ULARIFEEN

ZAIN ULARIFEEN

  • NA
  • 133
  • 148.1k

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)