HttpResponse.IsClientConnected プロパティ

定義

クライアントがサーバーにまだ接続されているかどうかを示す値を取得します。

public:
 property bool IsClientConnected { bool get(); };
public bool IsClientConnected { get; }
member this.IsClientConnected : bool
Public ReadOnly Property IsClientConnected As Boolean

プロパティ値

Boolean

クライアントが現在接続されている場合は true。それ以外の場合は false

次の例では、プロパティを IsClientConnected 使用して、ページを要求しているクライアントがサーバーに接続されたままであるかどうかを確認します。 true の場合 IsClientConnected 、コードはメソッドを Redirect 呼び出し、クライアントは別のページを表示します。 false の場合 IsClientConnected 、コードはメソッドを End 呼び出し、すべてのページ処理が終了します。

<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">

    private void Page_Load(object sender, EventArgs e)
    {
        // Check whether the browser remains
        // connected to the server.
        if (Response.IsClientConnected)
        {
            // If still connected, redirect
            // to another page. 
            Response.Redirect("Page2CS.aspx", false);
        }
        else
        {
            // If the browser is not connected
            // stop all response processing.
            Response.End();
        }
    }

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

        ' Check whether the browser remains
        ' connected to the server.
        If (Response.IsClientConnected) Then

            ' If still connected, redirect
            ' to another page.             
            Response.Redirect("Page2VB.aspx", false)
        Else
            ' If the browser is not connected
            ' stop all response processing.
            Response.End()
        End If
    End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">
    </form>
</body>
</html>

注釈

このプロパティは IsClientConnected 、次の false 条件に該当する場合に返されます。

  • クライアントへの接続が終了しました。 これは、メソッドが Close 呼び出された場合、またはクライアントが Web ページの実行を停止した場合、または別のページを参照した場合に発生する可能性があります。

  • HttpWorkerRequest要求を処理しているオブジェクトがnull返されるか、メソッドがHttpWorkerRequest.IsClientConnected返しますfalse。 カスタム HttpWorkerRequest オブジェクトが要求を処理する場合、カスタム条件に HttpWorkerRequest.IsClientConnected 基づいてメソッドが設定される可能性があります。 たとえば、カスタム worker 要求では、一定期間後に強制的にタイムアウトになる場合があります。

適用対象