WebService::Context Property
.NET Framework (current version)
Gets the ASP.NET HttpContext for the current request, which encapsulates all HTTP-specific context used by the HTTP server to process Web requests.
Assembly: System.Web.Services (in System.Web.Services.dll)
public: [BrowsableAttribute(false)] property HttpContext^ Context { [AspNetHostingPermissionAttribute(SecurityAction::LinkDemand, Level = AspNetHostingPermissionLevel::Minimal)] HttpContext^ get(); }
| Exception | Condition |
|---|---|
| Exception | Context is null. |
XML Web service methods that have either the SoapRpcMethodAttribute or SoapDocumentMethodAttribute attribute applied to them with the OneWay property of set to true, do not have access to their HttpContext using the static Current property. To access the HttpContext, derive the class implementing the XML Web service method from WebService and access the Context property.
The Example below uses the Context property to obtain the time of the request on the server.
.NET Framework
Available since 1.1
Available since 1.1
Show: