Source code quote in C#n° 113
          
           July 19, 2014 am31 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"))
{
   ...
}