次の方法で共有


HttpApplicationState.RemoveAt メソッド

HttpApplicationState オブジェクトをコレクションからインデックスを使用して削除します。

名前空間: System.Web
アセンブリ: System.Web (system.web.dll 内)

構文

'宣言
Public Sub RemoveAt ( _
    index As Integer _
)
'使用
Dim instance As HttpApplicationState
Dim index As Integer

instance.RemoveAt(index)
public void RemoveAt (
    int index
)
public:
void RemoveAt (
    int index
)
public void RemoveAt (
    int index
)
public function RemoveAt (
    index : int
)
適用できません。

パラメータ

  • index
    削除される項目のコレクション内の位置。

使用例

2 つのアプリケーション変数をコレクションに挿入し、RemoveAt メソッドを使用してカスタム HttpApplicationState オブジェクトの最初の変数を削除する方法のコード例を次に示します。

<%@ Page language="VB" AutoEventWireup="true" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
  <head>
    <title>HttpApplicationState - RemoveAt - VB.NET Example</title>
    <script runat="server">
      Sub Page_Load(sender As Object, e As EventArgs)

          ' Add two new application state variables.
          Application.Add("City", "Redmond")
          Application.Add("State", "WA")
        
          ' Show the contents of both application state variables.
          Label1.Text = "Application.Keys(0) contains: " & Application.Keys(0).ToString()
          Label1.Text += "<br />Application.Keys(1) contains: " & Application.Keys(1).ToString()
              
          ' Remove the City application state variable, which is at
          ' the first index location.
          Application.RemoveAt(0)
          Label2.Text = "<br />Call:&nbsp; Application.RemoveAt(0)"
              
          ' Show the contents of the application state variable,
          ' in the first index location, which is now the State variable.
          Label3.Text = "<br />Application.Keys(0) contains: " & Application.Keys(0).ToString()
      End Sub
    </script>
  </head>
  <body>
    <form id="Form1" method="post" runat="server">
            <h3>HttpApplicationState - RemoveAt - VB.NET Example</h3>
      <asp:Label id="Label1" runat="server" /><br />
      <asp:Label id="Label2" runat="server" /><br />
      <asp:Label id="Label3" runat="server" />
    </form>
  </body>
</html>
<%@ Page language="c#" AutoEventWireup="true" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
  <head>
    <title>HttpApplicationState - RemoveAt - C# Example</title>
    <script runat="server">
      void Page_Load(Object sender, EventArgs e) 
      {
          // Add two new application state variables.
          Application.Add("City", "Redmond");
          Application.Add("State", "WA");
        
          // Show the contents of both application state variables.
          Label1.Text = "Application.Keys[0] contains: " + Application.Keys[0].ToString();
          Label1.Text += "<br />Application.Keys[1] contains: " + Application.Keys[1].ToString();
              
          // Remove the City application state variable, which is at
          // the first index location.
          Application.RemoveAt(0);
          Label2.Text = "<br />Call:&nbsp; Application.RemoveAt(0)";
              
          // Show the contents of the application state variable,
          // in the first index location, which is now the State variable.
          Label3.Text = "<br />Application.Keys[0] contains: " + Application.Keys[0].ToString();
      }
    </script>
  </head>
  <body>
    <form id="Form1" method="post" runat="server">
            <h3>HttpApplicationState - RemoveAt - C# Example</h3>
      <asp:Label id="Label1" runat="server" /><br />
      <asp:Label id="Label2" runat="server" /><br />
      <asp:Label id="Label3" runat="server" />
    </form>
  </body>
</html>

プラットフォーム

Windows 98,Windows Server 2000 SP4,Windows CE,Windows Millennium Edition,Windows Mobile for Pocket PC,Windows Mobile for Smartphone,Windows Server 2003,Windows XP Media Center Edition,Windows XP Professional x64 Edition,Windows XP SP2,Windows XP Starter Edition

Microsoft .NET Framework 3.0 は Windows Vista,Microsoft Windows XP SP2,および Windows Server 2003 SP1 でサポートされています。

バージョン情報

.NET Framework

サポート対象 : 3.0,2.0,1.1,1.0

参照

関連項目

HttpApplicationState クラス
HttpApplicationState メンバ
System.Web 名前空間