SlideShare a Scribd company logo
MVC – Action Filter
Jason
Types of Action Filter
Authorization Filter
Action Filter
Result Filter
Action Filter


You can apply filters either to
individual action methods or to all the
action methods on a given controller
Action Filter Method
Method

When Called

OnActionExecuting()

Before the action method runs

OnActionExecuted()

After the action method runs

OnResultExecuting()

Before the ActionResult isexecuted

OnResultExecuted()

After the ActionResult is executed
Action Filter
Exception Filter
Reference


MSDN – Action Filter
◦ http://msdn.microsoft.com/en-us/library/dd381609(v=vs.100).aspx



Pro ASP.NET MVC 2 Framework,
Second Edition
◦ ltfs2rdeBookASP.NETMVC2

More Related Content

PPTX
Unit testing using Munit Part 1
PPTX
Java Unit Test - JUnit
PPT
Unit testing
PPTX
Selenium with java
PPTX
TestNG Session presented in Xebia XKE
PPTX
Tdd & unit test
PPTX
TestNG with selenium
Unit testing using Munit Part 1
Java Unit Test - JUnit
Unit testing
Selenium with java
TestNG Session presented in Xebia XKE
Tdd & unit test
TestNG with selenium

What's hot (20)

PDF
Quality for developers
PPTX
Unit test
PPTX
Unit testing using jasmine in Javascript
PDF
淺談 iOS Unit test
PDF
iOS Unit test getting stared
DOCX
Jira work flows
PPTX
Unit testing
PDF
Workshop unit test
PPTX
Template pattern
PDF
PDF
Test ng for testers
ODP
Beginners - Get Started With Unit Testing in .NET
PPTX
Introduction of TestNG framework and its benefits over Junit framework
PDF
Selenium with testng and eclipse ide
PDF
Unit test documentation
PPTX
Test ng tutorial
PPTX
Unit Testing with Python
PPTX
ASP.NET MVC controllers
PDF
Unit testing in Force.com platform
PPTX
The complete guide for software integration testing | David Tzemach
Quality for developers
Unit test
Unit testing using jasmine in Javascript
淺談 iOS Unit test
iOS Unit test getting stared
Jira work flows
Unit testing
Workshop unit test
Template pattern
Test ng for testers
Beginners - Get Started With Unit Testing in .NET
Introduction of TestNG framework and its benefits over Junit framework
Selenium with testng and eclipse ide
Unit test documentation
Test ng tutorial
Unit Testing with Python
ASP.NET MVC controllers
Unit testing in Force.com platform
The complete guide for software integration testing | David Tzemach
Ad

Viewers also liked (16)

PPTX
Mark c# overview
PPTX
X document xpath 小發現
PPT
Sql server 交易機制與 log
PPTX
Css advance
PPTX
Yield howar 20130607d
PPTX
Html basic
PPTX
Peggy optimist
PPTX
20131104 basic msbuild by Anney
PPTX
D3js learning tips
PPTX
Aspnet mvc4
PPTX
Observer pattern, delegate, event, lambda expression
PPTX
PPTX
Git tutorial undoing changes
PPT
20130329 introduction to linq
PPTX
Git tutorial git branches 20131206-Bryan
PPTX
Design pattern builder 20131115
Mark c# overview
X document xpath 小發現
Sql server 交易機制與 log
Css advance
Yield howar 20130607d
Html basic
Peggy optimist
20131104 basic msbuild by Anney
D3js learning tips
Aspnet mvc4
Observer pattern, delegate, event, lambda expression
Git tutorial undoing changes
20130329 introduction to linq
Git tutorial git branches 20131206-Bryan
Design pattern builder 20131115
Ad

More from LearningTech (20)

PPTX
PPTX
PostCss
PPTX
ReactJs
PPTX
Docker
PPTX
Semantic ui
PPTX
node.js errors
PPTX
Process control nodejs
PPTX
Expression tree
PPTX
SQL 效能調校
PPTX
flexbox report
PPTX
Vic weekly learning_20160504
PPTX
Reflection & activator
PPTX
Peggy markdown
PPTX
Node child process
PPTX
20160415ken.lee
PPTX
Peggy elasticsearch應用
PPTX
Expression tree
PPTX
Vic weekly learning_20160325
PPTX
git command
PDF
Asp.net MVC DI
PostCss
ReactJs
Docker
Semantic ui
node.js errors
Process control nodejs
Expression tree
SQL 效能調校
flexbox report
Vic weekly learning_20160504
Reflection & activator
Peggy markdown
Node child process
20160415ken.lee
Peggy elasticsearch應用
Expression tree
Vic weekly learning_20160325
git command
Asp.net MVC DI

Recently uploaded (20)

PDF
Chapter 3 Spatial Domain Image Processing.pdf
PPTX
Spectroscopy.pptx food analysis technology
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Encapsulation theory and applications.pdf
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Electronic commerce courselecture one. Pdf
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Network Security Unit 5.pdf for BCA BBA.
Chapter 3 Spatial Domain Image Processing.pdf
Spectroscopy.pptx food analysis technology
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
MIND Revenue Release Quarter 2 2025 Press Release
MYSQL Presentation for SQL database connectivity
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Dropbox Q2 2025 Financial Results & Investor Presentation
Encapsulation theory and applications.pdf
Diabetes mellitus diagnosis method based random forest with bat algorithm
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
The AUB Centre for AI in Media Proposal.docx
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Agricultural_Statistics_at_a_Glance_2022_0.pdf
NewMind AI Weekly Chronicles - August'25 Week I
Encapsulation_ Review paper, used for researhc scholars
Electronic commerce courselecture one. Pdf
20250228 LYD VKU AI Blended-Learning.pptx
Advanced methodologies resolving dimensionality complications for autism neur...
Network Security Unit 5.pdf for BCA BBA.

Action filter

Editor's Notes

  • #9: public class ShowMessageAttribute : ActionFilterAttribute{ public string Message { get; set; } public override void OnActionExecuting(ActionExecutingContextfilterContext) { filterContext.HttpContext.Response.Write("[BeforeAction " + Message + "]"); } public override void OnActionExecuted(ActionExecutedContextfilterContext) { filterContext.HttpContext.Response.Write("[AfterAction " + Message + "]"); } public override void OnResultExecuting(ResultExecutingContextfilterContext) { filterContext.HttpContext.Response.Write("[BeforeResult " + Message + "]"); } public override void OnResultExecuted(ResultExecutedContextfilterContext) { filterContext.HttpContext.Response.Write("[AfterResult " + Message + "]"); } }