HttpResponseSubstitutionCallback Delegar
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Representa o método que trata da substituição do cache de postagem.
public delegate System::String ^ HttpResponseSubstitutionCallback(HttpContext ^ context);
public delegate string HttpResponseSubstitutionCallback(HttpContext context);
type HttpResponseSubstitutionCallback = delegate of HttpContext -> string
Public Delegate Function HttpResponseSubstitutionCallback(context As HttpContext) As String
Parâmetros
- context
- HttpContext
O HttpContext que contém as informações de solicitação HTTP para a página com o controle que exige substituição do cache de postagem.
Valor Retornado
O conteúdo inserido na resposta armazenada em cache antes de ela ser enviada ao cliente.
Exemplos
O exemplo de código a seguir demonstra como adicionar um Substitution controle programaticamente a uma página da Web armazenada em cache de saída. Quando a página é carregada, a data e a hora atuais são exibidas para o usuário em um rótulo. Esta seção da página é armazenada em cache e atualizada a cada 60 segundos. Quando o Substitution controle é executado, ele chama o GetCurrentDateTime
método , que deve corresponder à assinatura do HttpResponseSubstitutionCallback delegado. A cadeia de caracteres retornada pelo GetCurrentDateTime
método é exibida para o usuário. Esta seção da página não é armazenada em cache e é atualizada sempre que a página é atualizada. A MethodName propriedade do Substitution controle obtém ou define o nome do método de retorno de chamada.
<%@ outputcache duration="60" varybyparam="none" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server" language="C#">
void Page_Load(object sender, System.EventArgs e)
{
// Programmatically create a Substitution control.
Substitution Substitution1 = new Substitution();
// Specify the callback method.
Substitution1.MethodName = "GetCurrentDateTime";
// Add the Substitution control to the controls
// collection of PlaceHolder1.
PlaceHolder1.Controls.Add (Substitution1);
// Display the current date and time in the label.
// Output caching applies to this section of the page.
CachedDateLabel.Text = DateTime.Now.ToString();
}
// The Substitution control calls this method to retrieve
// the current date and time. This section of the page
// is exempt from output caching.
public static string GetCurrentDateTime (HttpContext context)
{
return DateTime.Now.ToString ();
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>Substitution Class Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>Substitution Constructor Example</h3>
<p>This section of the page is not cached:</p>
<asp:placeholder id="PlaceHolder1"
runat="Server">
</asp:placeholder>
<br />
<p>This section of the page is cached:</p>
<asp:label id="CachedDateLabel"
runat="Server">
</asp:label>
<br /><br />
<asp:button id="RefreshButton"
text="Refresh Page"
runat="Server">
</asp:button>
</form>
</body>
</html>
<%@ outputcache duration="60" varybyparam="none" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server" language="VB">
Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
' Programmatically create a Substitution control.
Dim Substitution1 As New Substitution
' Specify the callback method.
Substitution1.MethodName = "GetCurrentDateTime"
' Add the Substitution control to the controls
' collection of PlaceHolder1.
PlaceHolder1.Controls.Add(Substitution1)
' Display the current date and time in the label.
' Output caching applies to this section of the page.
CachedDateLabel.Text = DateTime.Now.ToString()
End Sub
' The Substitution control calls this method to retrieve
' the current date and time. This section of the page
' is exempt from output caching.
Shared Function GetCurrentDateTime(ByVal context As HttpContext) As String
Return DateTime.Now.ToString()
End Function
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>Substitution Constructor Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>Substitution Constructor Example</h3>
<p>This section of the page is not cached:</p>
<asp:placeholder id="PlaceHolder1"
runat="Server">
</asp:placeholder>
<br />
<p>This section of the page is cached:</p>
<asp:label id="CachedDateLabel"
runat="Server">
</asp:label>
<br /><br />
<asp:button id="RefreshButton"
text="Refresh Page"
runat="Server">
</asp:button>
</form>
</body>
</html>
Comentários
O HttpResponseSubstitutionCallback delegado, em combinação com o WriteSubstitution método , é usado para renderizar o conteúdo pós-cache para os Substitution controles e AdRotator .
Para o Substitution controle, use a MethodName propriedade para especificar o nome do método de retorno de chamada a ser invocado quando o Substitution controle for executado. O método de retorno de chamada especificado deve ser um método estático na página ou no controle de usuário que contém o Substitution controle . A assinatura do método de retorno de chamada deve corresponder à assinatura de um HttpResponseSubstitutionCallback delegado que usa um HttpContext parâmetro e retorna uma cadeia de caracteres.
Para o controle, a AdRotator renderização é independente do cache de página, a menos que um manipulador de eventos seja fornecido para o AdCreated evento. Se nenhum AdCreated manipulador de eventos estiver presente, a substituição pós-cache será usada para renderizar o AdRotator conteúdo.
Métodos de Extensão
GetMethodInfo(Delegate) |
Obtém um objeto que representa o método representado pelo delegado especificado. |