2 instantiations of HttpListenerContext
System (2)
net\System\Net\HttpListener.cs (2)
1357HttpListenerContext ntlmContext = new HttpListenerContext(this, memoryBlob); 1398httpContext = new HttpListenerContext(this, memoryBlob);
42 references to HttpListenerContext
System (30)
net\System\Net\_ListenerRequestStream.cs (3)
17private HttpListenerContext m_HttpContext; 24internal HttpRequestStream(HttpListenerContext httpContext) { 66internal HttpListenerContext InternalHttpContext
net\System\Net\_ListenerResponseStream.cs (3)
17private HttpListenerContext m_HttpContext; 24internal HttpResponseStream(HttpListenerContext httpContext) { 69internal HttpListenerContext InternalHttpContext
net\System\Net\HttpListener.cs (13)
1139public HttpListenerContext GetContext() { 1143HttpListenerContext httpContext = null; 1279public HttpListenerContext EndGetContext(IAsyncResult asyncResult) { 1281HttpListenerContext httpContext = null; 1296httpContext = castedAsyncResult.InternalWaitForCompletion() as HttpListenerContext; 1313public Task<HttpListenerContext> GetContextAsync() 1315return Task<HttpListenerContext>.Factory.FromAsync(BeginGetContext, EndGetContext, null); 1326internal HttpListenerContext HandleAuthentication(RequestContextBase memoryBlob, out bool stoleBlob) 1357HttpListenerContext ntlmContext = new HttpListenerContext(this, memoryBlob); 1376HttpListenerContext httpContext = null; 1977private static void FreeContext(ref HttpListenerContext httpContext, RequestContextBase memoryBlob) 1990internal void SetAuthenticationHeaders(HttpListenerContext context) 2418HttpListenerContext.CancelRequest(m_RequestQueueHandle, requestId);
net\System\Net\HttpListenerRequest.cs (3)
235private HttpListenerContext m_HttpContext; 250internal HttpListenerRequest(HttpListenerContext httpContext, RequestContextBase memoryBlob) 297internal HttpListenerContext HttpListenerContext {
net\System\Net\HttpListenerResponse.cs (3)
39private HttpListenerContext m_HttpContext; 53internal HttpListenerResponse(HttpListenerContext httpContext) : this() { 58private HttpListenerContext HttpListenerContext {
net\System\Net\WebSockets\WebSocketHelpers.cs (3)
54internal static Task<HttpListenerWebSocketContext> AcceptWebSocketAsync(HttpListenerContext context, 67private static async Task<HttpListenerWebSocketContext> AcceptWebSocketAsyncCore(HttpListenerContext context, 316private static void ValidateWebSocketHeaders(HttpListenerContext context)
net\System\Net\WebSockets\WebSocketHttpListenerDuplexStream.cs (2)
32private HttpListenerContext m_Context; 53HttpListenerContext context)
System.ServiceModel (12)
System\ServiceModel\Channels\HttpChannelListener.cs (5)
317string GetAuthType(HttpListenerContext listenerContext) 497bool ShouldProcessAuthentication(HttpListenerContext listenerContext) 538public virtual SecurityMessageProperty ProcessAuthentication(HttpListenerContext listenerContext) 550SecurityMessageProperty ProcessRequiredAuthentication(HttpListenerContext listenerContext) 707public virtual HttpStatusCode ValidateAuthentication(HttpListenerContext listenerContext)
System\ServiceModel\Channels\HttpRequestContext.cs (3)
118internal static HttpRequestContext CreateContext(HttpChannelListener listener, HttpListenerContext listenerContext, EventTraceActivity eventTraceActivity) 770HttpListenerContext listenerContext; 774HttpListenerContext listenerContext, EventTraceActivity eventTraceActivity)
System\ServiceModel\Channels\HttpsChannelListener.cs (2)
240public override SecurityMessageProperty ProcessAuthentication(HttpListenerContext listenerContext) 349public override HttpStatusCode ValidateAuthentication(HttpListenerContext listenerContext)
System\ServiceModel\Channels\SharedHttpTransportManager.cs (2)
260HttpListenerContext listenerContext; 423static void HandleMessageReceiveFailed(HttpListenerContext listenerContext)