Citation de code source en C#n° 113
19 July 2014 à 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"))
{
...
}