1: コンテンツ、JSON 文字列配列などの文字列形式のみを返す必要がある場合。
context.Response.Write(resultPrice.ToString());
2: 画像を返したい場合は、ストリーム
の形式を使用しますbitmap.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
3: txt ドキュメントなどのファイルが返された場合、ダウンロードのためにクライアントに提供されます
context.Response.WriteFile("テキストインスタンス.txt");