다음을 통해 공유


WebService.Session 속성

정의

현재 요청에 대한 HttpSessionState 인스턴스를 가져옵니다.

public:
 property System::Web::SessionState::HttpSessionState ^ Session { System::Web::SessionState::HttpSessionState ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Web.SessionState.HttpSessionState Session { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Session : System.Web.SessionState.HttpSessionState
Public ReadOnly Property Session As HttpSessionState

속성 값

HttpSessionState

현재 세션에 대한 ASP.NET 세션 상태 개체를 나타내는 HttpSessionState입니다.

특성

예제

XML 웹 서비스 메서드를 액세스 하는 지정 된 횟수 만큼 특정 세션에 세션 상태를 사용 하 여 아래 예제 SessionHitCounter합니다. 이 예제에서는 EnableSession 의 속성을 WebMethodAttribute 로 설정 된 true 세션 상태에 액세스 하기 위해.

<%@ WebService Language="C#" Class="Util" %>
 
 using System.Web.Services;
 
 public class Util: WebService {
   [ WebMethod(Description="Per session Hit Counter",EnableSession=true)]
    public int SessionHitCounter() {
       if (Session["HitCounter"] == null) {
          Session["HitCounter"] = 1;
       }
       else {
          Session["HitCounter"] = ((int) Session["HitCounter"]) + 1;
          }
       return ((int) Session["HitCounter"]);
    }   
 }
<%@ WebService Language="VB" Class="Util" %>
 
Imports System.Web.Services

Public Class Util
    Inherits WebService
    
    <WebMethod(Description := "Per session Hit Counter", _
        EnableSession := True)> _
    Public Function SessionHitCounter() As Integer
        
        If Session("HitCounter") Is Nothing Then
            Session("HitCounter") = 1
        Else
            Session("HitCounter") = CInt(Session("HitCounter")) + 1
        End If
        Return CInt(Session("HitCounter"))
    End Function
End Class

적용 대상

추가 정보