CacheSection Constructor

Definitie

Initialiseert een nieuw exemplaar van de CacheSection klasse.

public:
 CacheSection();
public CacheSection();
Public Sub New ()

Voorbeelden

System.Web.Configuration.CacheSection cacheSection =
    (System.Web.Configuration.CacheSection)config.GetSection(
        "system.web/caching/cache");
Dim cacheSection As System.Web.Configuration.CacheSection =
    CType(config.GetSection("system.web/caching/cache"), System.Web.Configuration.CacheSection)

Opmerkingen

De CacheSection constructor is niet bedoeld om rechtstreeks vanuit uw code te worden gebruikt. Het wordt aangeroepen door het ASP.NET-configuratiesysteem. U verkrijgt een exemplaar van de CacheSection klasse met behulp van de GetSection methode.

Van toepassing op