>FromYourCode();

Source code quote in C#113

 19 July, 2014 at 04:40
// on the webservice client
Hashtable params = new Hashtable
{
   "IsActive", true.ToString();
   ...
};
service.someMethod(params);

//  on the webservice
if (hs["IsActive"].ToString().ToLower().Equals("true"))
{
   ...
}

Check similar quotes

Share this quote