Hi~
i get a problem, i want to pass client info to wcf , it's easy to do by calling method to do that.

client program as : wcfserviceInstance.setclientInfo(name,ip,age,sex)

but the problem is , i have 60 methods in wcf service , and i don't want every method look like this :
wcfserviceInstance.methodA(name,ip,age,sex,methodA_param)
wcfserviceInstance.methodB(name,ip,age,sex,methodB_param)
......


is there any solution can do it (wcfserviceInstance.methodB(methodB_param)) ?

can i just setting something , and every wcfserviceInstance.method can read client info by it's own in wcf service side.