Udostępnij za pośrednictwem


Substitution.MethodName Właściwość

Definicja

Pobiera lub ustawia nazwę metody wywołania zwrotnego, która ma zostać wywołana podczas wykonywania kontrolki Substitution .

public:
 virtual property System::String ^ MethodName { System::String ^ get(); void set(System::String ^ value); };
public virtual string MethodName { get; set; }
member this.MethodName : string with get, set
Public Overridable Property MethodName As String

Wartość właściwości

Ciąg reprezentujący nazwę metody do wywołania podczas wykonywania kontrolki Substitution .

Przykłady

W poniższym przykładzie kodu pokazano, jak deklaratywnie dodać kontrolkę Substitution do strony internetowej z pamięcią podręczną danych wyjściowych. Po załadowaniu strony zostanie wyświetlona statyczna lista punktowana dla użytkownika. Ta sekcja strony jest buforowana i aktualizowana tylko co 60 sekund. Po wykonaniu kontrolki Substitution wywołuje metodę GetUser , która zwraca ciąg reprezentujący bieżącego użytkownika. Ten ciąg jest wyświetlany w lokalizacji kontrolki Substitution na stronie. Ta sekcja strony nie jest buforowana i jest aktualizowana za każdym razem, gdy strona jest odświeżona.

<%@ 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#">  
  
  // The Substitution control calls this method to retrieve
  // the name of the current user from the HttpContext object. 
  // This section of the page is exempt from output caching. 
  public static string GetUser(HttpContext context)
  {
    return context.User.Identity.Name;
  }
  
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
  <title>Substitution.MethodName Property Example</title>
</head>
<body>
  <form id="Form1" runat="server">
  
    <h3>Substitution.MethodName Property Example</h3>  
    
    <!--This section of the page is not cached.-->
    Welcome to the site,
    <asp:substitution id="Substitution1"
      methodname="GetUser"
      runat="Server">
    </asp:substitution>
    
    <br /><br />
    
    <!--This section of the page is cached.-->
    Product list:
    <asp:bulletedlist id="ItemsBulletedList"             
      displaymode="Text" 
      runat="server">    
        <asp:ListItem>Product 1</asp:ListItem>
        <asp:ListItem>Product 2</asp:ListItem>
        <asp:ListItem>Product 3</asp:ListItem>
    </asp:bulletedlist>        

  </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">  
  
  ' The Substitution control calls this method to retrieve
  ' the name of the current user from the HttpContext object. 
  ' This section of the page is exempt from output caching. 
  Shared Function GetUser(ByVal context As HttpContext) As String
    Return context.User.Identity.Name
  End Function
  
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
  <title>Substitution.MethodName Property Example</title>
</head>
<body>
  <form id="Form1" runat="server">
  
    <h3>Substitution.MethodName Property Example</h3>  
    
    <!--This section of the page is not cached.-->
    Welcome to the site,
    <asp:substitution id="Substitution1"
      methodname="GetUser"
      runat="Server">
    </asp:substitution>
    
    <br /><br />
    
    <!--This section of the page is cached.-->
    Product list:
    <asp:bulletedlist id="ItemsBulletedList"             
      displaymode="Text" 
      runat="server">    
        <asp:ListItem>Product 1</asp:ListItem>
        <asp:ListItem>Product 2</asp:ListItem>
        <asp:ListItem>Product 3</asp:ListItem>
    </asp:bulletedlist>        

  </form>
</body>
</html>

Uwagi

MethodName Użyj właściwości , aby określić nazwę metody wywołania zwrotnego, która ma zostać wywołana podczas wykonywania kontrolkiSubstitution. Wybrana metoda wywołania zwrotnego musi być metodą statyczną na stronie lub kontrolce użytkownika, która zawiera kontrolkę Substitution . Podpis metody wywołania zwrotnego musi być zgodny z podpisem delegata HttpResponseSubstitutionCallbackHttpContext , który przyjmuje parametr i zwraca ciąg. Ciąg zwracany przez metodę wywołania zwrotnego to zawartość wyświetlana na stronie w lokalizacji kontrolki Substitution .

Parametr HttpContext hermetyzuje wszystkie informacje specyficzne dla protokołu HTTP dotyczące pojedynczego żądania HTTP. Służy do uzyskiwania dostępu do zmiennych sesji, informacji o autoryzacji i szczegółów personalizacji. Aby uzyskać więcej informacji, zobacz HttpResponseSubstitutionCallback.

Dotyczy

Zobacz też