次のコードを見てください。ですhandler.asxh
。
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "application/json";
new RequestManagementFacade().PinRequest(Int32.Parse(context.Request.QueryString["requestId"]), (Boolean.Parse(context.Request.QueryString["isPinned"])));
}
これは、次のエラーを示しています。
Value cannot be null. Parameter name: String
コンテキスト リクエストのクエリ文字列を確認したところ、渡された値がありますが、この段階でコードが壊れています。
このハンドラーは、ビジネス ロジック層に接続します。