我做了一个网络服务,它会给我用户信息。
[WebMethod]
public void Get_User_Info(string uid)
{
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["contest"].ConnectionString);
SqlCommand com = new SqlCommand("select * from mtblUser where UserId=@UserId", con);
com.CommandType = CommandType.Text;
com.Parameters.Add("@UserId", SqlDbType.NVarChar, 50).Value = uid;
SqlDataAdapter sda = new SqlDataAdapter(com);
DataTable dt = new DataTable();
sda.Fill(dt);
}
此 Web 服务有 1 个方法 Get_User_Info()。但是当我尝试使用此方法时,名称窗格显示 4 种方法,如下所示
Get_User_InfoRequest
Get_User_InfoRequestBody
Get_User_InfoResponse
Get_User_InfoResponseBody
我该如何使用我的方法请帮忙。