-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathSystem.Web.cs
More file actions
461 lines (380 loc) · 11.5 KB
/
System.Web.cs
File metadata and controls
461 lines (380 loc) · 11.5 KB
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
using System.Collections.Specialized;
namespace System.Web
{
public class UnvalidatedRequestValuesBase
{
public string RawUrl => null;
}
public class HttpRequestBase
{
public virtual UnvalidatedRequestValuesBase Unvalidated => null;
public virtual System.Collections.Specialized.NameValueCollection QueryString => null;
public virtual string RawUrl => null;
public string this[string o] => null;
}
public class HttpResponseBase
{
public void Write(object obj) { }
public virtual void AppendHeader(string name, string value) { }
public virtual void Redirect(string url) { }
public virtual void RedirectPermanent(string url) { }
public virtual int StatusCode { get; set; }
public virtual void AddHeader(string name, string value) { }
public virtual void End() { }
public virtual string RedirectLocation { get; set; }
public virtual NameValueCollection Headers => null;
}
public class HttpContextBase
{
public virtual HttpRequestBase Request => null;
public virtual HttpResponseBase Response => null;
}
public class HtmlString : IHtmlString
{
public HtmlString(string s)
{
}
public string ToHtmlString() => null;
}
public class HttpServerUtility
{
public void Transfer(string path) { }
public string UrlEncode(string s) => null;
public string HtmlEncode(string s) => null;
}
public class HttpApplication : IHttpHandler
{
public HttpServerUtility Server { get; }
public Routing.RouteTable RouteTable { get; }
}
}
namespace System.Web.Mvc
{
public class Controller
{
public ViewResult View() => null;
public HttpRequestBase Request => null;
public HttpResponseBase Response => null;
protected internal virtual RedirectResult RedirectPermanent(string url) => null;
protected internal RedirectToRouteResult RedirectToRoute(string routeName) => null;
public UrlHelper Url { get; set; }
protected internal virtual RedirectResult Redirect(string url) => null;
}
public class MvcHtmlString : HtmlString
{
public MvcHtmlString(string s) : base(s) { }
}
public class RoutePrefixAttribute : Attribute
{
public virtual string Prefix { get; private set; }
public RoutePrefixAttribute(string prefix) { }
}
public sealed class RouteAttribute : Attribute
{
public RouteAttribute(string template) { }
}
public class RedirectToRouteResult : ActionResult { }
}
namespace System.Web.UI
{
public class Control
{
}
public class Page
{
public System.Security.Principal.IPrincipal User { get; }
public System.Web.HttpRequest Request { get; }
public HttpResponse Response => null;
}
interface IPostBackDataHandler
{
}
interface IPostBackEventHandler
{
}
interface ITextControl
{
string Text { get; set; }
}
interface IEditableTextControl : ITextControl
{
}
}
namespace System.Web.UI.WebControls
{
public class WebControl : Control
{
}
public class TextBox : WebControl, IPostBackDataHandler, IEditableTextControl, ITextControl
{
public string Text { get; set; }
}
public class Calendar : WebControl, IPostBackEventHandler
{
public string Caption { get; set; }
}
public class Table : WebControl, IPostBackEventHandler
{
public string Caption { get; set; }
}
public class Label : WebControl, ITextControl
{
public virtual string Text { get; set; }
}
}
namespace System.Web
{
public interface IHttpHandler
{
}
public interface IServiceProvider
{
}
public class UnvalidatedRequestValues
{
public NameValueCollection QueryString { get; }
}
public class HttpRequest
{
public NameValueCollection QueryString => null;
public string ApplicationPath => null;
public string MapPath(string s) => null;
public string MapPath(string s, string t, bool b) => null;
public UnvalidatedRequestValues Unvalidated { get; }
public string RawUrl { get; set; }
public HttpCookieCollection Cookies => null;
public bool IsAuthenticated { get; set; }
public NameValueCollection Form { get; }
public NameValueCollection Headers { get; }
public NameValueCollection Params { get; }
public string UserAgent { get; }
public Uri UrlReferrer { get; }
public NameValueCollection ServerVariables { get; }
public String this[String key] => null;
}
public class HttpRequestWrapper : System.Web.HttpRequestBase
{
public HttpRequestWrapper(HttpRequest r) { }
}
public class HttpResponse
{
public void Write(object o) { }
public void Write(string s) { }
public void WriteFile(string s) { }
public HttpCookieCollection Cookies => null;
public void AddHeader(string name, string value) { }
public void Redirect(string url) { }
public void AppendHeader(string name, string value) { }
public void End() { }
public string RedirectLocation { get; set; }
public int StatusCode { get; set; }
public void RedirectPermanent(string url) { }
public virtual NameValueCollection Headers { get; set; }
}
public class HttpContext : IServiceProvider
{
public HttpRequest Request => null;
public HttpResponse Response => null;
public SessionState.HttpSessionState Session => null;
public HttpServerUtility Server => null;
public static HttpContext Current => null;
}
public class HttpCookie
{
public HttpCookie(string name)
{
}
public HttpCookie(string name, string value)
{
}
public string Value { get; set; }
public NameValueCollection Values => null;
public string this[string s] { get => null; set { } }
public bool Secure { get; set; }
public bool HttpOnly { get; set; }
public System.DateTime Expires { get; set; }
}
public abstract class HttpCookieCollection : System.Collections.Specialized.NameObjectCollectionBase
{
public HttpCookie this[int i] => null;
public HttpCookie this[string i] => null;
}
}
namespace System.Web.SessionState
{
public class HttpSessionState
{
public object this[string name] { get => null; set { } }
public void Abandon() { }
public void Clear() { }
}
}
namespace System.Web.Mvc
{
public class ControllerContext
{
}
public class ViewContext : ControllerContext
{
}
public interface IViewDataContainer
{
}
public class HtmlHelper
{
public HtmlHelper(ViewContext vc, IViewDataContainer dc)
{
}
public IHtmlString Raw(object o) => null;
public IHtmlString Raw(string s) => null;
}
public class ActionResult
{
}
public class FilterAttribute : Attribute
{
}
public class ActionMethodSelectorAttribute : Attribute
{
}
public class HttpPostAttribute : ActionMethodSelectorAttribute
{
}
public interface IAuthorizationFilter
{
}
public class ValidateAntiForgeryTokenAttribute : FilterAttribute
{
}
public class NonActionAttribute : ActionMethodSelectorAttribute
{
}
public class AuthorizationContext : ControllerContext
{
}
public class ControllerBase
{
}
public class ViewResultBase : ActionResult
{
}
public class ViewResult : ViewResultBase
{
}
interface IFilterProvider
{
}
public class GlobalFilterCollection : IFilterProvider
{
public void Add(object filter) { }
}
public static class GlobalFilters
{
public static GlobalFilterCollection Filters => null;
}
public class UrlHelper
{
public UrlHelper(Routing.RequestContext requestContext) { }
public virtual bool IsLocalUrl(string url) => false;
}
public class RedirectResult : ActionResult
{
public bool Permanent { get; set; }
public string Url => null;
public RedirectResult(string url) : this(url, permanent: false) { }
public RedirectResult(string url, bool permanent) { }
}
}
namespace System.Web.Routing
{
public class RequestContext
{
}
public class Route
{
}
public class RouteTable
{
public RouteCollection Routes { get; }
}
public class RouteCollection
{
public Route MapPageRoute(string routeName, string routeUrl, string physicalFile, bool checkPhysicalUrlAccess) { return null; }
}
}
namespace System.Web.Security
{
class MachineKey
{
public static byte[] Protect(byte[] userData, params string[] purposes) => null;
}
class Membership
{
public static bool ValidateUser(string username, string password) => false;
public static MembershipUser CreateUser(string username, string password) => null;
}
class FormsAuthentication
{
public static bool Authenticate(string name, string password) => false;
}
public class MembershipUser
{
public MembershipUser() { }
public MembershipUser(
string providerName,
string name,
object providerUserKey,
string email,
string passwordQuestion,
string comment,
bool isApproved,
bool isLockedOut,
DateTime creationDate,
DateTime lastLoginDate,
DateTime lastActivityDate,
DateTime lastPasswordChangedDate,
DateTime lastLockoutDate
)
{ }
public virtual bool ChangePassword(string oldPassword, string newPassword) => false;
}
}
namespace System.Web.Helpers
{
public static class AntiForgery
{
public static void Validate() { }
}
}
namespace System.Web.WebPages
{
public static class RequestExtensions
{
public static bool IsUrlLocalToHost(this System.Web.HttpRequestBase request, string url) => throw null;
}
}
namespace System.Web.Script.Serialization
{
// Generated from `System.Web.Script.Serialization.JavaScriptSerializer` in `System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35`
public class JavaScriptSerializer
{
public JavaScriptSerializer() => throw null;
public JavaScriptSerializer(System.Web.Script.Serialization.JavaScriptTypeResolver resolver) => throw null;
public object DeserializeObject(string input) => throw null;
public T Deserialize<T>(string input) => throw null;
public object Deserialize(string input, Type targetType) => throw null;
}
// Generated from `System.Web.Script.Serialization.JavaScriptTypeResolver` in `System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35`
abstract public class JavaScriptTypeResolver
{
}
// Generated from `System.Web.Script.Serialization.SimpleTypeResolver` in `System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35`
public class SimpleTypeResolver : System.Web.Script.Serialization.JavaScriptTypeResolver
{
public SimpleTypeResolver() => throw null;
}
}
namespace System.Web.Services
{
public class WebMethodAttribute : Attribute { }
}