Udostępnij za pośrednictwem


WebService.Context Właściwość

Definicja

Pobiera ASP.NET HttpContext dla bieżącego żądania, które hermetyzuje cały kontekst specyficzny dla protokołu HTTP używany przez serwer HTTP do przetwarzania żądań sieci Web.

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

Wartość właściwości

HttpContext

ASP.NET HttpContext dla bieżącego żądania.

Atrybuty

Wyjątki

Context to null.

Przykłady

W poniższym przykładzie użyto Context właściwości w celu uzyskania czasu żądania na serwerze.

<%@ WebService Language="C#" Class="Util" %>
 
 using System;
 using System.Web.Services;
 
 public class Util: WebService {
   [ WebMethod(Description="Returns the time as stored on the Server",
   EnableSession=false)]
   public string Time() {
      return Context.Timestamp.TimeOfDay.ToString();
   }
 }
<%@ WebService Language="VB" Class="Util" %>
 
Imports System
Imports System.Web.Services

Public Class Util
    Inherits WebService
    
    <WebMethod(Description := "Returns the time as stored on the Server", _
        EnableSession := False)> _
    Public Function Time() As String
        
        Return Context.Timestamp.TimeOfDay.ToString()
    End Function
End Class

Uwagi

Metody usługi sieci Web XML, które mają SoapRpcMethodAttribute zastosowany atrybut lub SoapDocumentMethodAttribute z właściwością OneWay ustawioną na true, nie mają dostępu do ich HttpContext przy użyciu właściwości statycznej Current . Aby uzyskać dostęp do HttpContextklasy , należy utworzyć klasę implementowania metody usługi sieci Web XML z WebService klasy i uzyskać dostęp do Context właściwości .

Dotyczy

Zobacz też