タグ付けされた質問 「outputcache」

2
複数のパラメーターでVaryByParamを使用するにはどうすればよいですか?
ASP.NET MVC2ではOutputCache、VaryByParam属性を使用します。単一のパラメーターで問題なく機能しましたが、メソッドに複数のパラメーターがある場合の正しい構文は何ですか? [OutputCache(Duration=30, VaryByParam = "customerId"] public ActionResult Index(int customerId) { //I've got this one under control, since it only has one parameter } [OutputCache(Duration=30, VaryByParam = "customerId"] public ActionResult Index(int customerId, int languageId) { //What is the correct syntax for VaryByParam now that I have a second parameter? } …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.