G
Guest
I have the following function for a web services method (6 parameters where 5
of them need to pass out values):
[WebMethod(Description="Given pkey, return a patient record as parameters")]
public void GetPatientPara(out string patientID, out string LastName, out
string FirstName, out string Sex, out int Age, int pkey)
However, in client side, I only have first five parameters in
proxy.GetPatientPara
What is the problem that I have?
Thank for any comment about it.
David
of them need to pass out values):
[WebMethod(Description="Given pkey, return a patient record as parameters")]
public void GetPatientPara(out string patientID, out string LastName, out
string FirstName, out string Sex, out int Age, int pkey)
However, in client side, I only have first five parameters in
proxy.GetPatientPara
What is the problem that I have?
Thank for any comment about it.
David