C# 클래스 MvcContrib.Castle.MvcTransactionAttribute

상속: System.Web.Mvc.ActionFilterAttribute
파일 보기 프로젝트 열기: atomicobject/mvccontrib 1 사용 예제들

공개 메소드들

메소드 설명
MvcTransactionAttribute ( ) : System

Declares unspecified values for transaction and isolation, which means that the transaction manager will use the default values for them

MvcTransactionAttribute ( TransactionMode transactionMode ) : System

Declares the transaction mode, but omits the isolation, which means that the transaction manager should use the default value for it.

MvcTransactionAttribute ( TransactionMode transactionMode, IsolationMode isolationMode ) : System

Declares both the transaction mode and isolation desired for this method. The transaction manager should obey the declaration.

OnActionExecuted ( System.Web.Mvc.ActionExecutedContext filterContext ) : void
OnActionExecuting ( System.Web.Mvc.ActionExecutingContext filterContext ) : void

메소드 상세

MvcTransactionAttribute() 공개 메소드

Declares unspecified values for transaction and isolation, which means that the transaction manager will use the default values for them
public MvcTransactionAttribute ( ) : System
리턴 System

MvcTransactionAttribute() 공개 메소드

Declares the transaction mode, but omits the isolation, which means that the transaction manager should use the default value for it.
public MvcTransactionAttribute ( TransactionMode transactionMode ) : System
transactionMode TransactionMode
리턴 System

MvcTransactionAttribute() 공개 메소드

Declares both the transaction mode and isolation desired for this method. The transaction manager should obey the declaration.
public MvcTransactionAttribute ( TransactionMode transactionMode, IsolationMode isolationMode ) : System
transactionMode TransactionMode
isolationMode IsolationMode
리턴 System

OnActionExecuted() 공개 메소드

public OnActionExecuted ( System.Web.Mvc.ActionExecutedContext filterContext ) : void
filterContext System.Web.Mvc.ActionExecutedContext
리턴 void

OnActionExecuting() 공개 메소드

public OnActionExecuting ( System.Web.Mvc.ActionExecutingContext filterContext ) : void
filterContext System.Web.Mvc.ActionExecutingContext
리턴 void