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