Partilhar via


CacheSection Construtor

Definição

Inicializa uma nova instância da classe CacheSection.

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

Exemplos

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)

Comentários

O CacheSection construtor não se destina a ser usado diretamente do código. Ele é chamado pelo sistema de configuração ASP.NET. Você obtém uma instância da CacheSection classe usando o GetSection método.

Aplica-se a