C# Class Candor.Web.Mvc.MvcTag

Defines any type of tag that can be used in a using statement which will automatically close itself at the end of the using block (on Dispose).
Inheritance: IDisposable
Afficher le fichier Open project: michael-lang/candor-common Class Usage Examples

Méthodes publiques

Méthode Description
Dispose ( ) : void

Disposes the tag instance by closing it.

EndTag ( ) : void

Ends the tag by disposing this instance.

MvcTag ( System.Web.Mvc.ViewContext viewContext, string tagName ) : System

Instantiates a new instance.

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Disposes the tag instance by closing it.

Private Methods

Méthode Description
MvcTag ( System.Web.HttpResponseBase httpResponse ) : System

Method Details

Dispose() public méthode

Disposes the tag instance by closing it.
public Dispose ( ) : void
Résultat void

Dispose() protected méthode

Disposes the tag instance by closing it.
protected Dispose ( bool disposing ) : void
disposing bool
Résultat void

EndTag() public méthode

Ends the tag by disposing this instance.
public EndTag ( ) : void
Résultat void

MvcTag() public méthode

Instantiates a new instance.
public MvcTag ( System.Web.Mvc.ViewContext viewContext, string tagName ) : System
viewContext System.Web.Mvc.ViewContext
tagName string
Résultat System