forked from microsoft/referencesource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWorkerRequest.cs
1473 lines (1162 loc) · 49.3 KB
/
WorkerRequest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//------------------------------------------------------------------------------
// <copyright file="WorkerRequest.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
/*++
Copyright (c) 1999 Microsoft Corporation
Module Name :
HttpWorkerRequest.cs
Abstract:
This module defines the base worker class used by ASP.NET Managed
code for request processing.
--*/
namespace System.Web {
using System;
using System.Collections;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.Runtime.InteropServices;
using System.Security.Permissions;
using System.Security.Principal;
using System.Text;
using System.Threading;
using System.Web.Management; // for webevent tracing
using System.Web.Util;
//
// ****************************************************************************
//
/// <devdoc>
/// <para>This abstract class defines the base worker methods and enumerations used by ASP.NET managed code for request processing.</para>
/// </devdoc>
[ComVisible(false)]
public abstract class HttpWorkerRequest {
private DateTime _startTime;
private volatile bool _isInReadEntitySync;
//it is up to the derived classes to implement a real id
#pragma warning disable 0649
private Guid _traceId;
#pragma warning restore 0649
protected HttpWorkerRequest()
{
_startTime = DateTime.UtcNow;
}
// ************************************************************************
//
// Indexed Headers. All headers that are defined by HTTP/1.1. These
// values are used as offsets into arrays and as token values.
//
// IMPORTANT : Notice request + response values overlap. Make sure you
// know which type of header array you are indexing.
//
//
// general-headers [section 4.5]
//
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderCacheControl = 0;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderConnection = 1;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderDate = 2;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderKeepAlive = 3; // not in rfc
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderPragma = 4;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderTrailer = 5;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderTransferEncoding = 6;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderUpgrade = 7;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderVia = 8;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderWarning = 9;
//
// entity-headers [section 7.1]
//
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderAllow = 10;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderContentLength = 11;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderContentType = 12;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderContentEncoding = 13;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderContentLanguage = 14;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderContentLocation = 15;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderContentMd5 = 16;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderContentRange = 17;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderExpires = 18;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderLastModified = 19;
//
// request-headers [section 5.3]
//
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderAccept = 20;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderAcceptCharset = 21;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderAcceptEncoding = 22;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderAcceptLanguage = 23;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderAuthorization = 24;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderCookie = 25; // not in rfc
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderExpect = 26;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderFrom = 27;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderHost = 28;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderIfMatch = 29;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderIfModifiedSince = 30;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderIfNoneMatch = 31;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderIfRange = 32;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderIfUnmodifiedSince = 33;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderMaxForwards = 34;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderProxyAuthorization = 35;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderReferer = 36;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderRange = 37;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderTe = 38;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderUserAgent = 39;
//
// Request headers end here
//
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int RequestHeaderMaximum = 40;
//
// response-headers [section 6.2]
//
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderAcceptRanges = 20;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderAge = 21;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderEtag = 22;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderLocation = 23;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderProxyAuthenticate = 24;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderRetryAfter = 25;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderServer = 26;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderSetCookie = 27; // not in rfc
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderVary = 28;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int HeaderWwwAuthenticate = 29;
//
// Response headers end here
//
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const int ResponseHeaderMaximum = 30;
// ************************************************************************
//
// Request reasons
//
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
/// <internalonly/>
public const int ReasonResponseCacheMiss = 0;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
/// <internalonly/>
public const int ReasonFileHandleCacheMiss = 1;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
/// <internalonly/>
public const int ReasonCachePolicy = 2;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
/// <internalonly/>
public const int ReasonCacheSecurity = 3;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
/// <internalonly/>
public const int ReasonClientDisconnect = 4;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
/// <internalonly/>
public const int ReasonDefault = ReasonResponseCacheMiss;
// ************************************************************************
//
// Access to request related members
//
// required members
/// <devdoc>
/// <para> Returns the virtual path to the requested Uri, including PathInfo.</para>
/// </devdoc>
public abstract String GetUriPath(); // "/foo/page.aspx/tail"
/// <devdoc>
/// <para>Provides Access to the specified member of the request header.</para>
/// </devdoc>
public abstract String GetQueryString(); // "param=bar"
/// <devdoc>
/// <para>Gets the URI requsted by the client, which will include PathInfo and QueryString if it exists.
/// This value is unaffected by any URL rewriting or routing that may occur on the server.</para>
/// </devdoc>
public abstract String GetRawUrl(); // "/foo/page.aspx/tail?param=bar"
/// <devdoc>
/// <para>Provides Access to the specified member of the request header.</para>
/// </devdoc>
public abstract String GetHttpVerbName(); // "GET"
/// <devdoc>
/// <para>Provides Access to the specified member of the request header.</para>
/// </devdoc>
public abstract String GetHttpVersion(); // "HTTP/1.1"
/// <devdoc>
/// <para>Provides Access to the specified member of the request header.</para>
/// </devdoc>
public abstract String GetRemoteAddress(); // client's ip address
/// <devdoc>
/// <para>Provides Access to the specified member of the request header.</para>
/// </devdoc>
public abstract int GetRemotePort(); // client's port
/// <devdoc>
/// <para>Provides Access to the specified member of the request header.</para>
/// </devdoc>
public abstract String GetLocalAddress(); // server's ip address
/// <devdoc>
/// <para>Provides Access to the specified member of the request header.</para>
/// </devdoc>
public abstract int GetLocalPort(); // server's port
internal virtual String GetLocalPortAsString() {
return GetLocalPort().ToString(NumberFormatInfo.InvariantInfo);
}
/*
* Internal property to determine if request is local
*/
internal bool IsLocal() {
String remoteAddress = GetRemoteAddress();
// if unknown, assume not local
if (String.IsNullOrEmpty(remoteAddress))
return false;
// check if localhost
if (remoteAddress == "127.0.0.1" || remoteAddress == "::1")
return true;
// compare with local address
if (remoteAddress == GetLocalAddress())
return true;
return false;
}
// Attempt to derive RawUrl from the "CACHE_URL" server variable.
internal static String GetRawUrlHelper(String cacheUrl) {
// cacheUrl has format "[http|https]://[server]:[port][uri]", including query string and path-info, if they exist.
if (cacheUrl != null) {
// the URI begins at the 3rd slash
int count = 0;
for(int index = 0; index < cacheUrl.Length; index++) {
if (cacheUrl[index] == '/') {
if (++count == 3) {
return cacheUrl.Substring(index);
}
}
}
}
// someone must have modified CACHE_URL, it is not valid
throw new HttpException(SR.GetString(SR.Cache_url_invalid));
}
// Mark a blocking call
// It allows RequestTimeoutManager to eventualy to close the connection and unblock the caller
// and handle request timeout properly (if in cancelable state)
internal bool IsInReadEntitySync {
get {
return _isInReadEntitySync;
}
set {
_isInReadEntitySync = value;
}
}
// optional members with defaults supplied
/// <devdoc>
/// <para>When overriden in a derived class, returns the response query string as an array of bytes.</para>
/// </devdoc>
public virtual byte[] GetQueryStringRawBytes() {
// access to raw qs for i18n
return null;
}
/// <devdoc>
/// <para>When overriden in a derived class, returns the client computer's name.</para>
/// </devdoc>
public virtual String GetRemoteName() {
// client's name
return GetRemoteAddress();
}
/// <devdoc>
/// <para>When overriden in a derived class, returns the name of the local server.</para>
/// </devdoc>
public virtual String GetServerName() {
// server's name
return GetLocalAddress();
}
/// <devdoc>
/// <para>When overriden in a derived class, returns the ID of the current connection.</para>
/// </devdoc>
/// <internalonly/>
public virtual long GetConnectionID() {
// connection id
return 0;
}
/// <devdoc>
/// <para>When overriden in a derived class, returns the context ID of the current connection.</para>
/// </devdoc>
/// <internalonly/>
public virtual long GetUrlContextID() {
// UL APPID
return 0;
}
/// <devdoc>
/// <para>When overriden in a derived class, returns the application pool ID for the current URL.</para>
/// </devdoc>
/// <internalonly/>
public virtual String GetAppPoolID() {
// UL Application pool id
return null;
}
/// <devdoc>
/// <para>When overriden in a derived class, returns the reason for the request.</para>
/// </devdoc>
/// <internalonly/>
public virtual int GetRequestReason() {
// constants Reason... above
return ReasonDefault;
}
/// <devdoc>
/// <para>When overriden in a derived class, returns the client's impersonation token.</para>
/// </devdoc>
public virtual IntPtr GetUserToken() {
// impersonation token
return IntPtr.Zero;
}
// Gets LOGON_USER as WindowsIdentity
internal WindowsIdentity GetLogonUserIdentity() {
IntPtr token = GetUserToken();
if (token != IntPtr.Zero) {
String logonUser = GetServerVariable("LOGON_USER");
String authType = GetServerVariable("AUTH_TYPE");
bool isAuthenticated = (!string.IsNullOrEmpty(logonUser) || (!string.IsNullOrEmpty(authType) && !StringUtil.EqualsIgnoreCase(authType, "basic")));
return CreateWindowsIdentityWithAssert(token, ((authType == null) ? "" : authType), WindowsAccountType.Normal, isAuthenticated);
}
return null; // invalid token
}
[PermissionSet(SecurityAction.Assert, Unrestricted = true)]
private static WindowsIdentity CreateWindowsIdentityWithAssert(IntPtr token, string authType, WindowsAccountType accountType, bool isAuthenticated) {
return new WindowsIdentity(token, authType, accountType, isAuthenticated);
}
/// <internalonly/>
public virtual IntPtr GetVirtualPathToken() {
// impersonation token
return IntPtr.Zero;
}
/// <devdoc>
/// <para>When overriden in a derived class, returns a value indicating whether the connection is secure (using SSL).</para>
/// </devdoc>
public virtual bool IsSecure() {
// is over ssl?
return false;
}
/// <devdoc>
/// <para>When overriden in a derived class, returns the HTTP protocol (HTTP or HTTPS).</para>
/// </devdoc>
public virtual String GetProtocol() {
return IsSecure() ? "https" : "http";
}
/// <devdoc>
/// <para>When overriden in a derived class, returns the virtual path to the requested Uri, without PathInfo.</para>
/// </devdoc>
public virtual String GetFilePath() {
// "/foo/page.aspx"
return GetUriPath();
}
internal VirtualPath GetFilePathObject() {
// Don't allow malformed paths for security reasons
return VirtualPath.Create(GetFilePath(), VirtualPathOptions.AllowAbsolutePath |
VirtualPathOptions.AllowNull);
}
/// <devdoc>
/// <para>When overriden in a derived class, returns the translated file path to the requested Uri (from virtual path to
/// UNC path, ie "/foo/page.aspx" to "c:\dir\page.aspx") </para>
/// </devdoc>
public virtual String GetFilePathTranslated() {
// "c:\dir\page.aspx"
return null;
}
/// <devdoc>
/// <para>When overriden in a derived class, returns additional
/// path information for a resource with a URL extension. i.e. for the URL
/// /virdir/page.html/tail, the PathInfo value is /tail. </para>
/// </devdoc>
public virtual String GetPathInfo() {
// "/tail"
return String.Empty;
}
/// <devdoc>
/// <para>When overriden in a derived class, returns the virtual path to the
/// currently executing server application.</para>
/// </devdoc>
public virtual String GetAppPath() {
// "/foo"
return null;
}
/// <devdoc>
/// <para>When overriden in a derived class, returns the UNC-translated path to
/// the currently executing server application.</para>
/// </devdoc>
public virtual String GetAppPathTranslated() {
// "c:\dir"
return null;
}
//
// Virtual methods to read the incoming request
//
public virtual int GetPreloadedEntityBodyLength() {
byte[] bytes = GetPreloadedEntityBody();
return (bytes != null) ? bytes.Length : 0;
}
public virtual int GetPreloadedEntityBody(byte[] buffer, int offset) {
int l = 0;
byte[] bytes = GetPreloadedEntityBody();
if (bytes != null) {
l = bytes.Length;
Buffer.BlockCopy(bytes, 0, buffer, offset, l);
}
return l;
}
public virtual byte[] GetPreloadedEntityBody() {
return null;
}
public virtual bool IsEntireEntityBodyIsPreloaded() {
return false;
}
public virtual int GetTotalEntityBodyLength() {
int l = 0;
String contentLength = GetKnownRequestHeader(HeaderContentLength);
if (contentLength != null) {
try {
l = Int32.Parse(contentLength, CultureInfo.InvariantCulture);
}
catch {
}
}
return l;
}
public virtual int ReadEntityBody(byte[] buffer, int size) {
return 0;
}
public virtual int ReadEntityBody(byte[] buffer, int offset, int size) {
byte[] temp = new byte[size];
int l = ReadEntityBody(temp, size);
if (l > 0) {
Buffer.BlockCopy(temp, 0, buffer, offset, l);
}
return l;
}
// Returns true if async flush is supported; otherwise false.
public virtual bool SupportsAsyncFlush { get { return false; } }
// Sends the currently buffered response to the client asynchronously. To support this,
// the worker request buffers the status, headers, and resonse body until an asynchronous
// flush operation is initiated.
public virtual IAsyncResult BeginFlush(AsyncCallback callback, Object state) {
throw new NotSupportedException();
}
// Finish an asynchronous flush.
public virtual void EndFlush(IAsyncResult asyncResult) {
throw new NotSupportedException();
}
public virtual bool SupportsAsyncRead { get { return false; } }
// Begin an asynchronous read of the request entity body. To read the entire entity, invoke
// repeatedly until total bytes read is equal to Request.ContentLength or EndRead indicates
// that zero bytes were read. If Request.ContentLength is zero and the request is chunked,
// then invoke repeatedly until EndRead indicates that zero bytes were read.
//
// If an error occurs and the client is no longer connected, no exception will be thrown for
// compatibility with the synchronous read method (ReadEntityBody). Instead, EndRead will
// report that zero bytes were read.
//
// This implements Stream.BeginRead, and as such, should throw
// exceptions as described on MSDN when errors occur.
public virtual IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) {
throw new NotSupportedException();
}
// Finish an asynchronous read. When this returns zero there is no more to be read. If Request.ContentLength is non-zero,
// do not read more bytes then specified by ContentLength, or an error will occur.
// This implements Stream.EndRead on HttpBufferlessInputStream, and as such, should throw
// exceptions as described on MSDN when errors occur.
public virtual int EndRead(IAsyncResult asyncResult) {
throw new NotSupportedException();
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public virtual String GetKnownRequestHeader(int index) {
return null;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public virtual String GetUnknownRequestHeader(String name) {
return null;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
[CLSCompliant(false)]
public virtual String[][] GetUnknownRequestHeaders() {
return null;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public virtual String GetServerVariable(String name) {
return null;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
/// <internalonly/>
public virtual long GetBytesRead() {
return 0;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
/// <internalonly/>
internal virtual DateTime GetStartTime() {
return _startTime;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
/// <internalonly/>
internal virtual void ResetStartTime() {
_startTime = DateTime.UtcNow;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public virtual String MapPath(String virtualPath) {
return null;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public virtual String MachineConfigPath {
get {
return null;
}
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public virtual String RootWebConfigPath {
get {
return null;
}
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public virtual String MachineInstallDirectory {
get {
return null;
}
}
// IntegratedTraceType in EtwTrace.cs
internal virtual void RaiseTraceEvent(IntegratedTraceType traceType, string eventData) {
// do nothing
}
internal virtual void RaiseTraceEvent(WebBaseEvent webEvent) {
// do nothing
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public virtual Guid RequestTraceIdentifier {
get {
return _traceId;
}
}
//
// Abstract methods to write the response
//
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public abstract void SendStatus(int statusCode, String statusDescription);
// for IIS 7, use both the status and substatus
// this cannot be abstract
internal virtual void SendStatus(int statusCode, int subStatusCode, String statusDescription) {
SendStatus(statusCode, statusDescription);
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public abstract void SendKnownResponseHeader(int index, String value);
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public abstract void SendUnknownResponseHeader(String name, String value);
// headers encoding controled via HttpResponse.HeaderEncoding
internal virtual void SetHeaderEncoding(Encoding encoding) {
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public abstract void SendResponseFromMemory(byte[] data, int length);
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public virtual void SendResponseFromMemory(IntPtr data, int length) {
if (length > 0) {
InternalSecurityPermissions.UnmanagedCode.Demand();
// derived classes could have an efficient implementation
byte[] bytes = new byte[length];
Misc.CopyMemory(data, 0, bytes, 0, length);
SendResponseFromMemory(bytes, length);
}
}
[SecurityPermission(SecurityAction.Assert, UnmanagedCode = true)]
internal virtual void SendResponseFromMemory(IntPtr data, int length, bool isBufferFromUnmanagedPool) {
// default implementation
SendResponseFromMemory(data, length);
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public abstract void SendResponseFromFile(String filename, long offset, long length);
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public abstract void SendResponseFromFile(IntPtr handle, long offset, long length);
internal virtual void TransmitFile(String filename, long length, bool isImpersonating) {
TransmitFile(filename, 0, length, isImpersonating);
}
internal virtual void TransmitFile(String filename, long offset, long length, bool isImpersonating) {
// default implementation
SendResponseFromFile(filename, offset, length);
}
// VSWhidbey 555203: support 64-bit file sizes for TransmitFile on IIS6
internal virtual bool SupportsLongTransmitFile {
get { return false; }
}
// WOS 1555777: kernel cache support
// If the worker request can kernel cache the response, it returns the
// kernel cache key; otherwise null. The kernel cache key is used to invalidate
// the entry if a dependency changes or the item is flushed from the managed
// cache for any reason.
internal virtual string SetupKernelCaching(int secondsToLive, string originalCacheUrl, bool enableKernelCacheForVaryByStar) {
return null;
}
// WOS 1555777: kernel cache support
internal virtual void DisableKernelCache() {