0

ユーザー情報を提供する Web サービスを作成しました。

[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() があります。しかし、このメソッドを使用しようとすると、namespane は以下のような 4 つのメソッドを表示します

Get_User_InfoRequest

Get_User_InfoRequestBody

Get_User_InfoResponse

Get_User_InfoResponseBody

私の方法をどのように使用できますか。助けてください。

ここに画像の説明を入力

4

1 に答える 1