1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 [assembly:System.Reflection.AssemblyVersionAttribute("2.0.0.0")]
6 [assembly:System.CLSCompliantAttribute(true)]
7 [assembly:System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute.DebuggingModes)(2))]
8 [assembly:System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")]
9 [assembly:System.Reflection.AssemblyConfigurationAttribute("")]
10 [assembly:System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")]
11 [assembly:System.Reflection.AssemblyDefaultAliasAttribute("System.Web.WebPages.dll")]
12 [assembly:System.Reflection.AssemblyDescriptionAttribute("")]
13 [assembly:System.Reflection.AssemblyFileVersionAttribute("2.0.0.0")]
14 [assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.7.2046.0")]
15 [assembly:System.Reflection.AssemblyProductAttribute("Microsoft ASP.NET Web Pages")]
16 [assembly:System.Reflection.AssemblyTitleAttribute("System.Web.WebPages")]
17 [assembly:System.Reflection.AssemblyTrademarkAttribute("")]
18 [assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
19 [assembly:System.Resources.SatelliteContractVersionAttribute("4.0.0.0")]
20 [assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
21 [assembly:System.Runtime.CompilerServices.ReferenceAssemblyAttribute]
22 [assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
23 [assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
24 [assembly:System.Security.SecurityTransparentAttribute]
25 [assembly:System.Web.PreApplicationStartMethodAttribute(typeof(System.Web.WebPages.PreApplicationStartCode), "Start")]
26 namespace System.Web.Helpers
27 {
28     public static partial class AntiForgery
29     {
GetHtml()30         public static System.Web.HtmlString GetHtml() { throw null; }
31         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
32         [System.ObsoleteAttribute("This method is deprecated. Use the GetHtml() method instead. To specify a custom domain for the generated cookie, use the <httpCookies> configuration element. To specify custom data to be embedded within the token, use the static AntiForgeryConfig.AdditionalDataProvider property.", true)]
GetHtml(System.Web.HttpContextBase httpContext, string salt, string domain, string path)33         public static System.Web.HtmlString GetHtml(System.Web.HttpContextBase httpContext, string salt, string domain, string path) { throw null; }
34         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetTokens(string oldCookieToken, out string newCookieToken, out string formToken)35         public static void GetTokens(string oldCookieToken, out string newCookieToken, out string formToken) { newCookieToken = default(string); formToken = default(string); }
Validate()36         public static void Validate() { }
37         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
Validate(string cookieToken, string formToken)38         public static void Validate(string cookieToken, string formToken) { }
39         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
40         [System.ObsoleteAttribute("This method is deprecated. Use the Validate() method instead.", true)]
Validate(System.Web.HttpContextBase httpContext, string salt)41         public static void Validate(System.Web.HttpContextBase httpContext, string salt) { }
42     }
43     public static partial class AntiForgeryConfig
44     {
45         public static System.Web.Helpers.IAntiForgeryAdditionalDataProvider AdditionalDataProvider { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
46         public static string CookieName { get { throw null; } set { } }
47         public static bool RequireSsl { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
48         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
49         public static bool SuppressIdentityHeuristicChecks { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
50         public static string UniqueClaimTypeIdentifier { get { throw null; } set { } }
51     }
52     public partial interface IAntiForgeryAdditionalDataProvider
53     {
GetAdditionalData(System.Web.HttpContextBase context)54         string GetAdditionalData(System.Web.HttpContextBase context);
ValidateAdditionalData(System.Web.HttpContextBase context, string additionalData)55         bool ValidateAdditionalData(System.Web.HttpContextBase context, string additionalData);
56     }
57     public sealed partial class UnvalidatedRequestValues
58     {
UnvalidatedRequestValues()59         internal UnvalidatedRequestValues() { }
60         public System.Collections.Specialized.NameValueCollection Form { get { throw null; } }
61         public string this[string key] { get { throw null; } }
62         public System.Collections.Specialized.NameValueCollection QueryString { get { throw null; } }
63     }
64     public static partial class Validation
65     {
Unvalidated(this System.Web.HttpRequest request)66         public static System.Web.Helpers.UnvalidatedRequestValues Unvalidated(this System.Web.HttpRequest request) { throw null; }
Unvalidated(this System.Web.HttpRequest request, string key)67         public static string Unvalidated(this System.Web.HttpRequest request, string key) { throw null; }
Unvalidated(this System.Web.HttpRequestBase request)68         public static System.Web.Helpers.UnvalidatedRequestValues Unvalidated(this System.Web.HttpRequestBase request) { throw null; }
Unvalidated(this System.Web.HttpRequestBase request, string key)69         public static string Unvalidated(this System.Web.HttpRequestBase request, string key) { throw null; }
70     }
71 }
72 namespace System.Web.Mvc
73 {
74     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
75     [System.SerializableAttribute]
76     public sealed partial class HttpAntiForgeryException : System.Web.HttpException
77     {
HttpAntiForgeryException()78         public HttpAntiForgeryException() { }
HttpAntiForgeryException(string message)79         public HttpAntiForgeryException(string message) { }
HttpAntiForgeryException(string message, System.Exception innerException)80         public HttpAntiForgeryException(string message, System.Exception innerException) { }
81     }
82     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
83     public partial class ModelClientValidationEqualToRule : System.Web.Mvc.ModelClientValidationRule
84     {
ModelClientValidationEqualToRule(string errorMessage, object other)85         public ModelClientValidationEqualToRule(string errorMessage, object other) { }
86     }
87     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
88     public partial class ModelClientValidationRangeRule : System.Web.Mvc.ModelClientValidationRule
89     {
ModelClientValidationRangeRule(string errorMessage, object minValue, object maxValue)90         public ModelClientValidationRangeRule(string errorMessage, object minValue, object maxValue) { }
91     }
92     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
93     public partial class ModelClientValidationRegexRule : System.Web.Mvc.ModelClientValidationRule
94     {
ModelClientValidationRegexRule(string errorMessage, string pattern)95         public ModelClientValidationRegexRule(string errorMessage, string pattern) { }
96     }
97     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
98     public partial class ModelClientValidationRemoteRule : System.Web.Mvc.ModelClientValidationRule
99     {
ModelClientValidationRemoteRule(string errorMessage, string url, string httpMethod, string additionalFields)100         public ModelClientValidationRemoteRule(string errorMessage, string url, string httpMethod, string additionalFields) { }
101     }
102     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
103     public partial class ModelClientValidationRequiredRule : System.Web.Mvc.ModelClientValidationRule
104     {
ModelClientValidationRequiredRule(string errorMessage)105         public ModelClientValidationRequiredRule(string errorMessage) { }
106     }
107     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
108     public partial class ModelClientValidationRule
109     {
ModelClientValidationRule()110         public ModelClientValidationRule() { }
111         public string ErrorMessage { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
112         public System.Collections.Generic.IDictionary<string, object> ValidationParameters { get { throw null; } }
113         public string ValidationType { get { throw null; } set { } }
114     }
115     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
116     public partial class ModelClientValidationStringLengthRule : System.Web.Mvc.ModelClientValidationRule
117     {
ModelClientValidationStringLengthRule(string errorMessage, int minimumLength, int maximumLength)118         public ModelClientValidationStringLengthRule(string errorMessage, int minimumLength, int maximumLength) { }
119     }
120     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
121     public partial class TagBuilder
122     {
TagBuilder(string tagName)123         public TagBuilder(string tagName) { }
124         public System.Collections.Generic.IDictionary<string, string> Attributes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
125         public string IdAttributeDotReplacement { get { throw null; } set { } }
126         public string InnerHtml { get { throw null; } set { } }
127         public string TagName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
AddCssClass(string value)128         public void AddCssClass(string value) { }
CreateSanitizedId(string originalId)129         public static string CreateSanitizedId(string originalId) { throw null; }
CreateSanitizedId(string originalId, string invalidCharReplacement)130         public static string CreateSanitizedId(string originalId, string invalidCharReplacement) { throw null; }
GenerateId(string name)131         public void GenerateId(string name) { }
MergeAttribute(string key, string value)132         public void MergeAttribute(string key, string value) { }
MergeAttribute(string key, string value, bool replaceExisting)133         public void MergeAttribute(string key, string value, bool replaceExisting) { }
MergeAttributes(System.Collections.Generic.IDictionary<TKey, TValue> attributes)134         public void MergeAttributes<TKey, TValue>(System.Collections.Generic.IDictionary<TKey, TValue> attributes) { }
MergeAttributes(System.Collections.Generic.IDictionary<TKey, TValue> attributes, bool replaceExisting)135         public void MergeAttributes<TKey, TValue>(System.Collections.Generic.IDictionary<TKey, TValue> attributes, bool replaceExisting) { }
SetInnerText(string innerText)136         public void SetInnerText(string innerText) { }
ToString()137         public override string ToString() { throw null; }
ToString(System.Web.Mvc.TagRenderMode renderMode)138         public string ToString(System.Web.Mvc.TagRenderMode renderMode) { throw null; }
139     }
140     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
141     public enum TagRenderMode
142     {
143         EndTag = 2,
144         Normal = 0,
145         SelfClosing = 3,
146         StartTag = 1,
147     }
148     public static partial class UnobtrusiveValidationAttributesGenerator
149     {
GetValidationAttributes(System.Collections.Generic.IEnumerable<System.Web.Mvc.ModelClientValidationRule> clientRules, System.Collections.Generic.IDictionary<string, object> results)150         public static void GetValidationAttributes(System.Collections.Generic.IEnumerable<System.Web.Mvc.ModelClientValidationRule> clientRules, System.Collections.Generic.IDictionary<string, object> results) { }
151     }
152 }
153 namespace System.Web.WebPages
154 {
155     public partial class ApplicationPart
156     {
ApplicationPart(System.Reflection.Assembly assembly, string rootVirtualPath)157         public ApplicationPart(System.Reflection.Assembly assembly, string rootVirtualPath) { }
ProcessVirtualPath(System.Reflection.Assembly assembly, string baseVirtualPath, string virtualPath)158         public static string ProcessVirtualPath(System.Reflection.Assembly assembly, string baseVirtualPath, string virtualPath) { throw null; }
Register(System.Web.WebPages.ApplicationPart applicationPart)159         public static void Register(System.Web.WebPages.ApplicationPart applicationPart) { }
160     }
161     public abstract partial class ApplicationStartPage : System.Web.WebPages.WebPageExecutingBase
162     {
163         public static readonly string CacheKeyPrefix;
164         public static readonly string StartPageVirtualPath;
ApplicationStartPage()165         protected ApplicationStartPage() { }
166         public System.Web.HttpApplication Application { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
167         public override System.Web.HttpContextBase Context { get { throw null; } }
168         public static System.Web.HtmlString Markup { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
169         public System.IO.TextWriter Output { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
170         public override string VirtualPath { get { throw null; } set { } }
GetOutputWriter()171         protected internal override System.IO.TextWriter GetOutputWriter() { throw null; }
Write(object value)172         public override void Write(object value) { }
Write(System.Web.WebPages.HelperResult result)173         public override void Write(System.Web.WebPages.HelperResult result) { }
WriteLiteral(object value)174         public override void WriteLiteral(object value) { }
175     }
176     public partial class AttributeValue
177     {
AttributeValue(System.Web.WebPages.Instrumentation.PositionTagged<string> prefix, System.Web.WebPages.Instrumentation.PositionTagged<object> value, bool literal)178         public AttributeValue(System.Web.WebPages.Instrumentation.PositionTagged<string> prefix, System.Web.WebPages.Instrumentation.PositionTagged<object> value, bool literal) { }
179         public bool Literal { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
180         public System.Web.WebPages.Instrumentation.PositionTagged<string> Prefix { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
181         public System.Web.WebPages.Instrumentation.PositionTagged<object> Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
FromTuple(System.Tuple<System.Tuple<string, int>, System.Tuple<object, int>, bool> value)182         public static System.Web.WebPages.AttributeValue FromTuple(System.Tuple<System.Tuple<string, int>, System.Tuple<object, int>, bool> value) { throw null; }
FromTuple(System.Tuple<System.Tuple<string, int>, System.Tuple<string, int>, bool> value)183         public static System.Web.WebPages.AttributeValue FromTuple(System.Tuple<System.Tuple<string, int>, System.Tuple<string, int>, bool> value) { throw null; }
operator System.Web.WebPages.AttributeValue(System.Tuple<System.Tuple<string, int>, System.Tuple<object, int>, bool> value)184         public static implicit operator System.Web.WebPages.AttributeValue (System.Tuple<System.Tuple<string, int>, System.Tuple<object, int>, bool> value) { throw null; }
operator System.Web.WebPages.AttributeValue(System.Tuple<System.Tuple<string, int>, System.Tuple<string, int>, bool> value)185         public static implicit operator System.Web.WebPages.AttributeValue (System.Tuple<System.Tuple<string, int>, System.Tuple<string, int>, bool> value) { throw null; }
186     }
187     public static partial class BrowserHelpers
188     {
ClearOverriddenBrowser(this System.Web.HttpContextBase httpContext)189         public static void ClearOverriddenBrowser(this System.Web.HttpContextBase httpContext) { }
GetOverriddenBrowser(this System.Web.HttpContextBase httpContext)190         public static System.Web.HttpBrowserCapabilitiesBase GetOverriddenBrowser(this System.Web.HttpContextBase httpContext) { throw null; }
GetOverriddenUserAgent(this System.Web.HttpContextBase httpContext)191         public static string GetOverriddenUserAgent(this System.Web.HttpContextBase httpContext) { throw null; }
GetVaryByCustomStringForOverriddenBrowser(this System.Web.HttpContext httpContext)192         public static string GetVaryByCustomStringForOverriddenBrowser(this System.Web.HttpContext httpContext) { throw null; }
GetVaryByCustomStringForOverriddenBrowser(this System.Web.HttpContextBase httpContext)193         public static string GetVaryByCustomStringForOverriddenBrowser(this System.Web.HttpContextBase httpContext) { throw null; }
SetOverriddenBrowser(this System.Web.HttpContextBase httpContext, string userAgent)194         public static void SetOverriddenBrowser(this System.Web.HttpContextBase httpContext, string userAgent) { }
SetOverriddenBrowser(this System.Web.HttpContextBase httpContext, System.Web.WebPages.BrowserOverride browserOverride)195         public static void SetOverriddenBrowser(this System.Web.HttpContextBase httpContext, System.Web.WebPages.BrowserOverride browserOverride) { }
196     }
197     public enum BrowserOverride
198     {
199         Desktop = 0,
200         Mobile = 1,
201     }
202     public abstract partial class BrowserOverrideStore
203     {
BrowserOverrideStore()204         protected BrowserOverrideStore() { }
GetOverriddenUserAgent(System.Web.HttpContextBase httpContext)205         public abstract string GetOverriddenUserAgent(System.Web.HttpContextBase httpContext);
SetOverriddenUserAgent(System.Web.HttpContextBase httpContext, string userAgent)206         public abstract void SetOverriddenUserAgent(System.Web.HttpContextBase httpContext, string userAgent);
207     }
208     public partial class BrowserOverrideStores
209     {
BrowserOverrideStores()210         public BrowserOverrideStores() { }
211         public static System.Web.WebPages.BrowserOverrideStore Current { get { throw null; } set { } }
212     }
213     public partial class CookieBrowserOverrideStore : System.Web.WebPages.BrowserOverrideStore
214     {
CookieBrowserOverrideStore()215         public CookieBrowserOverrideStore() { }
CookieBrowserOverrideStore(int daysToExpire)216         public CookieBrowserOverrideStore(int daysToExpire) { }
GetOverriddenUserAgent(System.Web.HttpContextBase httpContext)217         public override string GetOverriddenUserAgent(System.Web.HttpContextBase httpContext) { throw null; }
SetOverriddenUserAgent(System.Web.HttpContextBase httpContext, string userAgent)218         public override void SetOverriddenUserAgent(System.Web.HttpContextBase httpContext, string userAgent) { }
219     }
220     public partial class DefaultDisplayMode : System.Web.WebPages.IDisplayMode
221     {
DefaultDisplayMode()222         public DefaultDisplayMode() { }
DefaultDisplayMode(string suffix)223         public DefaultDisplayMode(string suffix) { }
224         public System.Func<System.Web.HttpContextBase, bool> ContextCondition { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
225         public virtual string DisplayModeId { get { throw null; } }
CanHandleContext(System.Web.HttpContextBase httpContext)226         public bool CanHandleContext(System.Web.HttpContextBase httpContext) { throw null; }
GetDisplayInfo(System.Web.HttpContextBase httpContext, string virtualPath, System.Func<string, bool> virtualPathExists)227         public virtual System.Web.WebPages.DisplayInfo GetDisplayInfo(System.Web.HttpContextBase httpContext, string virtualPath, System.Func<string, bool> virtualPathExists) { throw null; }
TransformPath(string virtualPath, string suffix)228         protected virtual string TransformPath(string virtualPath, string suffix) { throw null; }
229     }
230     public partial class DisplayInfo
231     {
DisplayInfo(string filePath, System.Web.WebPages.IDisplayMode displayMode)232         public DisplayInfo(string filePath, System.Web.WebPages.IDisplayMode displayMode) { }
233         public System.Web.WebPages.IDisplayMode DisplayMode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
234         public string FilePath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
235     }
236     public sealed partial class DisplayModeProvider
237     {
DisplayModeProvider()238         internal DisplayModeProvider() { }
239         public static readonly string DefaultDisplayModeId;
240         public static readonly string MobileDisplayModeId;
241         public static System.Web.WebPages.DisplayModeProvider Instance { get { throw null; } }
242         public System.Collections.Generic.IList<System.Web.WebPages.IDisplayMode> Modes { get { throw null; } }
243         public bool RequireConsistentDisplayMode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
GetAvailableDisplayModesForContext(System.Web.HttpContextBase httpContext, System.Web.WebPages.IDisplayMode currentDisplayMode)244         public System.Collections.Generic.IEnumerable<System.Web.WebPages.IDisplayMode> GetAvailableDisplayModesForContext(System.Web.HttpContextBase httpContext, System.Web.WebPages.IDisplayMode currentDisplayMode) { throw null; }
GetDisplayInfoForVirtualPath(string virtualPath, System.Web.HttpContextBase httpContext, System.Func<string, bool> virtualPathExists, System.Web.WebPages.IDisplayMode currentDisplayMode)245         public System.Web.WebPages.DisplayInfo GetDisplayInfoForVirtualPath(string virtualPath, System.Web.HttpContextBase httpContext, System.Func<string, bool> virtualPathExists, System.Web.WebPages.IDisplayMode currentDisplayMode) { throw null; }
246     }
247     public partial class HelperPage
248     {
HelperPage()249         public HelperPage() { }
250         public static dynamic App { get { throw null; } }
251         public static System.Web.HttpApplicationStateBase AppState { get { throw null; } }
252         public static System.Web.Caching.Cache Cache { get { throw null; } }
253         public static System.Web.HttpContextBase Context { get { throw null; } }
254         public static System.Web.WebPages.WebPageRenderingBase CurrentPage { get { throw null; } }
255         protected static string HelperVirtualPath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
256         public static System.Web.WebPages.Html.HtmlHelper Html { get { throw null; } }
257         public static bool IsAjax { get { throw null; } }
258         public static bool IsPost { get { throw null; } }
259         public static dynamic Model { get { throw null; } }
260         public static System.Web.WebPages.Html.ModelStateDictionary ModelState { get { throw null; } }
261         public static dynamic Page { get { throw null; } }
262         public static System.Web.WebPages.WebPageContext PageContext { get { throw null; } set { } }
263         public static System.Collections.Generic.IDictionary<object,dynamic> PageData { get { throw null; } }
264         public static System.Web.HttpRequestBase Request { get { throw null; } }
265         public static System.Web.HttpResponseBase Response { get { throw null; } }
266         public static System.Web.HttpServerUtilityBase Server { get { throw null; } }
267         public static System.Web.HttpSessionStateBase Session { get { throw null; } }
268         public static System.Collections.Generic.IList<string> UrlData { get { throw null; } }
269         public static System.Security.Principal.IPrincipal User { get { throw null; } }
270         public static string VirtualPath { get { throw null; } }
BeginContext(System.IO.TextWriter writer, string virtualPath, int startPosition, int length, bool isLiteral)271         public static void BeginContext(System.IO.TextWriter writer, string virtualPath, int startPosition, int length, bool isLiteral) { }
BeginContext(string virtualPath, int startPosition, int length, bool isLiteral)272         public static void BeginContext(string virtualPath, int startPosition, int length, bool isLiteral) { }
EndContext(System.IO.TextWriter writer, string virtualPath, int startPosition, int length, bool isLiteral)273         public static void EndContext(System.IO.TextWriter writer, string virtualPath, int startPosition, int length, bool isLiteral) { }
EndContext(string virtualPath, int startPosition, int length, bool isLiteral)274         public static void EndContext(string virtualPath, int startPosition, int length, bool isLiteral) { }
Href(string path, params object[] pathParts)275         public static string Href(string path, params object[] pathParts) { throw null; }
WriteAttributeTo(System.IO.TextWriter writer, string name, System.Web.WebPages.Instrumentation.PositionTagged<string> prefix, System.Web.WebPages.Instrumentation.PositionTagged<string> suffix, params System.Web.WebPages.AttributeValue[] values)276         public static void WriteAttributeTo(System.IO.TextWriter writer, string name, System.Web.WebPages.Instrumentation.PositionTagged<string> prefix, System.Web.WebPages.Instrumentation.PositionTagged<string> suffix, params System.Web.WebPages.AttributeValue[] values) { }
WriteLiteralTo(System.IO.TextWriter writer, object value)277         public static void WriteLiteralTo(System.IO.TextWriter writer, object value) { }
WriteLiteralTo(System.IO.TextWriter writer, System.Web.WebPages.HelperResult value)278         public static void WriteLiteralTo(System.IO.TextWriter writer, System.Web.WebPages.HelperResult value) { }
WriteTo(System.IO.TextWriter writer, object value)279         public static void WriteTo(System.IO.TextWriter writer, object value) { }
WriteTo(System.IO.TextWriter writer, System.Web.WebPages.HelperResult value)280         public static void WriteTo(System.IO.TextWriter writer, System.Web.WebPages.HelperResult value) { }
281     }
282     public partial class HelperResult : System.Web.IHtmlString
283     {
HelperResult(System.Action<System.IO.TextWriter> action)284         public HelperResult(System.Action<System.IO.TextWriter> action) { }
ToHtmlString()285         public string ToHtmlString() { throw null; }
ToString()286         public override string ToString() { throw null; }
WriteTo(System.IO.TextWriter writer)287         public void WriteTo(System.IO.TextWriter writer) { }
288     }
289     public static partial class HttpContextExtensions
290     {
RedirectLocal(this System.Web.HttpContextBase context, string url)291         public static void RedirectLocal(this System.Web.HttpContextBase context, string url) { }
RegisterForDispose(this System.Web.HttpContextBase context, System.IDisposable resource)292         public static void RegisterForDispose(this System.Web.HttpContextBase context, System.IDisposable resource) { }
293     }
294     public partial interface IDisplayMode
295     {
296         string DisplayModeId { get; }
CanHandleContext(System.Web.HttpContextBase httpContext)297         bool CanHandleContext(System.Web.HttpContextBase httpContext);
GetDisplayInfo(System.Web.HttpContextBase httpContext, string virtualPath, System.Func<string, bool> virtualPathExists)298         System.Web.WebPages.DisplayInfo GetDisplayInfo(System.Web.HttpContextBase httpContext, string virtualPath, System.Func<string, bool> virtualPathExists);
299     }
300     public partial interface ITemplateFile
301     {
302         System.Web.WebPages.TemplateFileInfo TemplateInfo { get; }
303     }
304     public partial interface IValidator
305     {
306         System.Web.Mvc.ModelClientValidationRule ClientValidationRule { get; }
Validate(System.ComponentModel.DataAnnotations.ValidationContext validationContext)307         System.ComponentModel.DataAnnotations.ValidationResult Validate(System.ComponentModel.DataAnnotations.ValidationContext validationContext);
308     }
309     public partial interface IVirtualPathFactory
310     {
CreateInstance(string virtualPath)311         object CreateInstance(string virtualPath);
Exists(string virtualPath)312         bool Exists(string virtualPath);
313     }
314     public partial interface IWebPageRequestExecutor
315     {
Execute(System.Web.WebPages.WebPage page)316         bool Execute(System.Web.WebPages.WebPage page);
317     }
318     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=false, Inherited=true)]
319     public sealed partial class PageVirtualPathAttribute : System.Attribute
320     {
PageVirtualPathAttribute(string virtualPath)321         public PageVirtualPathAttribute(string virtualPath) { }
322         public string VirtualPath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
323     }
324     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
325     public static partial class PreApplicationStartCode
326     {
Start()327         public static void Start() { }
328     }
329     public static partial class RequestExtensions
330     {
IsUrlLocalToHost(this System.Web.HttpRequestBase request, string url)331         public static bool IsUrlLocalToHost(this System.Web.HttpRequestBase request, string url) { throw null; }
332     }
333     public abstract partial class RequestFieldValidatorBase : System.Web.WebPages.IValidator
334     {
RequestFieldValidatorBase(string errorMessage)335         protected RequestFieldValidatorBase(string errorMessage) { }
RequestFieldValidatorBase(string errorMessage, bool useUnvalidatedValues)336         protected RequestFieldValidatorBase(string errorMessage, bool useUnvalidatedValues) { }
337         public virtual System.Web.Mvc.ModelClientValidationRule ClientValidationRule { get { throw null; } }
GetHttpContext(System.ComponentModel.DataAnnotations.ValidationContext validationContext)338         protected static System.Web.HttpContextBase GetHttpContext(System.ComponentModel.DataAnnotations.ValidationContext validationContext) { throw null; }
GetRequestValue(System.Web.HttpRequestBase request, string field)339         protected string GetRequestValue(System.Web.HttpRequestBase request, string field) { throw null; }
IsValid(System.Web.HttpContextBase httpContext, string value)340         protected abstract bool IsValid(System.Web.HttpContextBase httpContext, string value);
Validate(System.ComponentModel.DataAnnotations.ValidationContext validationContext)341         public virtual System.ComponentModel.DataAnnotations.ValidationResult Validate(System.ComponentModel.DataAnnotations.ValidationContext validationContext) { throw null; }
342     }
343     public static partial class ResponseExtensions
344     {
OutputCache(this System.Web.HttpResponseBase response, int numberOfSeconds, bool sliding=false, System.Collections.Generic.IEnumerable<string> varyByParams=null, System.Collections.Generic.IEnumerable<string> varyByHeaders=null, System.Collections.Generic.IEnumerable<string> varyByContentEncodings=null, System.Web.HttpCacheability cacheability=(System.Web.HttpCacheability)(4))345         public static void OutputCache(this System.Web.HttpResponseBase response, int numberOfSeconds, bool sliding=false, System.Collections.Generic.IEnumerable<string> varyByParams=null, System.Collections.Generic.IEnumerable<string> varyByHeaders=null, System.Collections.Generic.IEnumerable<string> varyByContentEncodings=null, System.Web.HttpCacheability cacheability=(System.Web.HttpCacheability)(4)) { }
SetStatus(this System.Web.HttpResponseBase response, int httpStatusCode)346         public static void SetStatus(this System.Web.HttpResponseBase response, int httpStatusCode) { }
SetStatus(this System.Web.HttpResponseBase response, System.Net.HttpStatusCode httpStatusCode)347         public static void SetStatus(this System.Web.HttpResponseBase response, System.Net.HttpStatusCode httpStatusCode) { }
WriteBinary(this System.Web.HttpResponseBase response, byte[] data)348         public static void WriteBinary(this System.Web.HttpResponseBase response, byte[] data) { }
WriteBinary(this System.Web.HttpResponseBase response, byte[] data, string mimeType)349         public static void WriteBinary(this System.Web.HttpResponseBase response, byte[] data, string mimeType) { }
350     }
SectionWriter()351     public delegate void SectionWriter();
352     public abstract partial class StartPage : System.Web.WebPages.WebPageRenderingBase
353     {
StartPage()354         protected StartPage() { }
355         public System.Web.WebPages.WebPageRenderingBase ChildPage { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
356         public override System.Web.HttpContextBase Context { get { throw null; } set { } }
357         public override string Layout { get { throw null; } set { } }
358         public override dynamic Page { get { throw null; } }
359         public override System.Collections.Generic.IDictionary<object,dynamic> PageData { get { throw null; } }
ExecutePageHierarchy()360         public override void ExecutePageHierarchy() { }
GetOutputWriter()361         protected internal override System.IO.TextWriter GetOutputWriter() { throw null; }
GetStartPage(System.Web.WebPages.WebPageRenderingBase page, string fileName, System.Collections.Generic.IEnumerable<string> supportedExtensions)362         public static System.Web.WebPages.WebPageRenderingBase GetStartPage(System.Web.WebPages.WebPageRenderingBase page, string fileName, System.Collections.Generic.IEnumerable<string> supportedExtensions) { throw null; }
RenderPage(string path, params object[] data)363         public override System.Web.WebPages.HelperResult RenderPage(string path, params object[] data) { throw null; }
RunPage()364         public void RunPage() { }
Write(object value)365         public override void Write(object value) { }
Write(System.Web.WebPages.HelperResult result)366         public override void Write(System.Web.WebPages.HelperResult result) { }
WriteLiteral(object value)367         public override void WriteLiteral(object value) { }
368     }
369     public static partial class StringExtensions
370     {
AsBool(this string value)371         public static bool AsBool(this string value) { throw null; }
AsBool(this string value, bool defaultValue)372         public static bool AsBool(this string value, bool defaultValue) { throw null; }
AsDateTime(this string value)373         public static System.DateTime AsDateTime(this string value) { throw null; }
AsDateTime(this string value, System.DateTime defaultValue)374         public static System.DateTime AsDateTime(this string value, System.DateTime defaultValue) { throw null; }
AsDecimal(this string value)375         public static decimal AsDecimal(this string value) { throw null; }
AsDecimal(this string value, decimal defaultValue)376         public static decimal AsDecimal(this string value, decimal defaultValue) { throw null; }
AsFloat(this string value)377         public static float AsFloat(this string value) { throw null; }
AsFloat(this string value, float defaultValue)378         public static float AsFloat(this string value, float defaultValue) { throw null; }
AsInt(this string value)379         public static int AsInt(this string value) { throw null; }
AsInt(this string value, int defaultValue)380         public static int AsInt(this string value, int defaultValue) { throw null; }
As(this string value)381         public static TValue As<TValue>(this string value) { throw null; }
As(this string value, TValue defaultValue)382         public static TValue As<TValue>(this string value, TValue defaultValue) { throw null; }
IsBool(this string value)383         public static bool IsBool(this string value) { throw null; }
IsDateTime(this string value)384         public static bool IsDateTime(this string value) { throw null; }
IsDecimal(this string value)385         public static bool IsDecimal(this string value) { throw null; }
IsEmpty(this string value)386         public static bool IsEmpty(this string value) { throw null; }
IsFloat(this string value)387         public static bool IsFloat(this string value) { throw null; }
IsInt(this string value)388         public static bool IsInt(this string value) { throw null; }
Is(this string value)389         public static bool Is<TValue>(this string value) { throw null; }
390     }
391     public partial class TemplateFileInfo
392     {
TemplateFileInfo(string virtualPath)393         public TemplateFileInfo(string virtualPath) { }
394         public string VirtualPath { get { throw null; } }
395     }
396     public static partial class TemplateStack
397     {
GetCurrentTemplate(System.Web.HttpContextBase httpContext)398         public static System.Web.WebPages.ITemplateFile GetCurrentTemplate(System.Web.HttpContextBase httpContext) { throw null; }
Pop(System.Web.HttpContextBase httpContext)399         public static System.Web.WebPages.ITemplateFile Pop(System.Web.HttpContextBase httpContext) { throw null; }
Push(System.Web.HttpContextBase httpContext, System.Web.WebPages.ITemplateFile templateFile)400         public static void Push(System.Web.HttpContextBase httpContext, System.Web.WebPages.ITemplateFile templateFile) { }
401     }
402     public sealed partial class ValidationHelper
403     {
ValidationHelper()404         internal ValidationHelper() { }
405         public string FormField { get { throw null; } }
406         public static string InvalidCssClass { get { throw null; } set { } }
407         public static string ValidCssClass { get { throw null; } set { } }
Add(System.Collections.Generic.IEnumerable<string> fields, params System.Web.WebPages.IValidator[] validators)408         public void Add(System.Collections.Generic.IEnumerable<string> fields, params System.Web.WebPages.IValidator[] validators) { }
Add(string field, params System.Web.WebPages.IValidator[] validators)409         public void Add(string field, params System.Web.WebPages.IValidator[] validators) { }
AddFormError(string errorMessage)410         public void AddFormError(string errorMessage) { }
ClassFor(string field)411         public System.Web.HtmlString ClassFor(string field) { throw null; }
For(string field)412         public System.Web.HtmlString For(string field) { throw null; }
GetErrors(params string[] fields)413         public System.Collections.Generic.IEnumerable<string> GetErrors(params string[] fields) { throw null; }
IsValid(params string[] fields)414         public bool IsValid(params string[] fields) { throw null; }
RequireField(string field)415         public void RequireField(string field) { }
RequireField(string field, string errorMessage)416         public void RequireField(string field, string errorMessage) { }
RequireFields(params string[] fields)417         public void RequireFields(params string[] fields) { }
Validate(params string[] fields)418         public System.Collections.Generic.IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult> Validate(params string[] fields) { throw null; }
419     }
420     public abstract partial class Validator
421     {
Validator()422         protected Validator() { }
DateTime(string errorMessage=null)423         public static System.Web.WebPages.IValidator DateTime(string errorMessage=null) { throw null; }
Decimal(string errorMessage=null)424         public static System.Web.WebPages.IValidator Decimal(string errorMessage=null) { throw null; }
EqualsTo(string otherFieldName, string errorMessage=null)425         public static System.Web.WebPages.IValidator EqualsTo(string otherFieldName, string errorMessage=null) { throw null; }
Float(string errorMessage=null)426         public static System.Web.WebPages.IValidator Float(string errorMessage=null) { throw null; }
Integer(string errorMessage=null)427         public static System.Web.WebPages.IValidator Integer(string errorMessage=null) { throw null; }
Range(double minValue, double maxValue, string errorMessage=null)428         public static System.Web.WebPages.IValidator Range(double minValue, double maxValue, string errorMessage=null) { throw null; }
Range(int minValue, int maxValue, string errorMessage=null)429         public static System.Web.WebPages.IValidator Range(int minValue, int maxValue, string errorMessage=null) { throw null; }
Regex(string pattern, string errorMessage=null)430         public static System.Web.WebPages.IValidator Regex(string pattern, string errorMessage=null) { throw null; }
Required(string errorMessage=null)431         public static System.Web.WebPages.IValidator Required(string errorMessage=null) { throw null; }
StringLength(int maxLength, int minLength=0, string errorMessage=null)432         public static System.Web.WebPages.IValidator StringLength(int maxLength, int minLength=0, string errorMessage=null) { throw null; }
Url(string errorMessage=null)433         public static System.Web.WebPages.IValidator Url(string errorMessage=null) { throw null; }
434     }
435     public partial class VirtualPathFactoryManager : System.Web.WebPages.IVirtualPathFactory
436     {
VirtualPathFactoryManager()437         internal VirtualPathFactoryManager() { }
CreateInstance(string virtualPath)438         public object CreateInstance(string virtualPath) { throw null; }
Exists(string virtualPath)439         public bool Exists(string virtualPath) { throw null; }
RegisterVirtualPathFactory(System.Web.WebPages.IVirtualPathFactory virtualPathFactory)440         public static void RegisterVirtualPathFactory(System.Web.WebPages.IVirtualPathFactory virtualPathFactory) { }
441     }
442     public abstract partial class WebPage : System.Web.WebPages.WebPageBase
443     {
WebPage()444         protected WebPage() { }
445         public override System.Web.HttpContextBase Context { get { throw null; } set { } }
446         public System.Web.WebPages.Html.HtmlHelper Html { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
447         public dynamic Model { get { throw null; } }
448         public System.Web.WebPages.Html.ModelStateDictionary ModelState { get { throw null; } }
449         public System.Web.WebPages.ValidationHelper Validation { get { throw null; } }
ExecutePageHierarchy()450         public override void ExecutePageHierarchy() { }
InitializePage()451         protected override void InitializePage() { }
RegisterPageExecutor(System.Web.WebPages.IWebPageRequestExecutor executor)452         public static void RegisterPageExecutor(System.Web.WebPages.IWebPageRequestExecutor executor) { }
RenderPage(string path, params object[] data)453         public override System.Web.WebPages.HelperResult RenderPage(string path, params object[] data) { throw null; }
454     }
455     public abstract partial class WebPageBase : System.Web.WebPages.WebPageRenderingBase
456     {
WebPageBase()457         protected WebPageBase() { }
458         public override string Layout { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
459         public System.IO.TextWriter Output { get { throw null; } }
460         public System.Collections.Generic.Stack<System.IO.TextWriter> OutputStack { get { throw null; } }
461         public override dynamic Page { get { throw null; } }
462         public override System.Collections.Generic.IDictionary<object,dynamic> PageData { get { throw null; } }
ConfigurePage(System.Web.WebPages.WebPageBase parentPage)463         protected virtual void ConfigurePage(System.Web.WebPages.WebPageBase parentPage) { }
CreateInstanceFromVirtualPath(string virtualPath)464         public static System.Web.WebPages.WebPageBase CreateInstanceFromVirtualPath(string virtualPath) { throw null; }
DefineSection(string name, System.Web.WebPages.SectionWriter action)465         public void DefineSection(string name, System.Web.WebPages.SectionWriter action) { }
ExecutePageHierarchy()466         public override void ExecutePageHierarchy() { }
ExecutePageHierarchy(System.Web.WebPages.WebPageContext pageContext, System.IO.TextWriter writer)467         public void ExecutePageHierarchy(System.Web.WebPages.WebPageContext pageContext, System.IO.TextWriter writer) { }
ExecutePageHierarchy(System.Web.WebPages.WebPageContext pageContext, System.IO.TextWriter writer, System.Web.WebPages.WebPageRenderingBase startPage)468         public void ExecutePageHierarchy(System.Web.WebPages.WebPageContext pageContext, System.IO.TextWriter writer, System.Web.WebPages.WebPageRenderingBase startPage) { }
GetOutputWriter()469         protected internal override System.IO.TextWriter GetOutputWriter() { throw null; }
InitializePage()470         protected virtual void InitializePage() { }
IsSectionDefined(string name)471         public bool IsSectionDefined(string name) { throw null; }
PopContext()472         public void PopContext() { }
PushContext(System.Web.WebPages.WebPageContext pageContext, System.IO.TextWriter writer)473         public void PushContext(System.Web.WebPages.WebPageContext pageContext, System.IO.TextWriter writer) { }
RenderBody()474         public System.Web.WebPages.HelperResult RenderBody() { throw null; }
RenderPage(string path, params object[] data)475         public override System.Web.WebPages.HelperResult RenderPage(string path, params object[] data) { throw null; }
RenderSection(string name)476         public System.Web.WebPages.HelperResult RenderSection(string name) { throw null; }
RenderSection(string name, bool required)477         public System.Web.WebPages.HelperResult RenderSection(string name, bool required) { throw null; }
Write(object value)478         public override void Write(object value) { }
Write(System.Web.WebPages.HelperResult result)479         public override void Write(System.Web.WebPages.HelperResult result) { }
WriteLiteral(object value)480         public override void WriteLiteral(object value) { }
481     }
482     public partial class WebPageContext
483     {
WebPageContext()484         public WebPageContext() { }
WebPageContext(System.Web.HttpContextBase context, System.Web.WebPages.WebPageRenderingBase page, object model)485         public WebPageContext(System.Web.HttpContextBase context, System.Web.WebPages.WebPageRenderingBase page, object model) { }
486         public static System.Web.WebPages.WebPageContext Current { get { throw null; } }
487         public object Model { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
488         public System.Web.WebPages.WebPageRenderingBase Page { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
489         public System.Collections.Generic.IDictionary<object,dynamic> PageData { get { throw null; } }
490     }
491     public abstract partial class WebPageExecutingBase
492     {
WebPageExecutingBase()493         protected WebPageExecutingBase() { }
494         public virtual dynamic App { get { throw null; } }
495         public virtual System.Web.HttpApplicationStateBase AppState { get { throw null; } }
496         public virtual System.Web.HttpContextBase Context { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
497         public virtual string VirtualPath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
498         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
499         public virtual System.Web.WebPages.IVirtualPathFactory VirtualPathFactory { get { throw null; } set { } }
BeginContext(int startPosition, int length, bool isLiteral)500         protected internal void BeginContext(int startPosition, int length, bool isLiteral) { }
BeginContext(System.IO.TextWriter writer, int startPosition, int length, bool isLiteral)501         protected internal void BeginContext(System.IO.TextWriter writer, int startPosition, int length, bool isLiteral) { }
BeginContext(System.IO.TextWriter writer, string virtualPath, int startPosition, int length, bool isLiteral)502         protected internal void BeginContext(System.IO.TextWriter writer, string virtualPath, int startPosition, int length, bool isLiteral) { }
BeginContext(string virtualPath, int startPosition, int length, bool isLiteral)503         protected internal void BeginContext(string virtualPath, int startPosition, int length, bool isLiteral) { }
EndContext(int startPosition, int length, bool isLiteral)504         protected internal void EndContext(int startPosition, int length, bool isLiteral) { }
EndContext(System.IO.TextWriter writer, int startPosition, int length, bool isLiteral)505         protected internal void EndContext(System.IO.TextWriter writer, int startPosition, int length, bool isLiteral) { }
EndContext(System.IO.TextWriter writer, string virtualPath, int startPosition, int length, bool isLiteral)506         protected internal void EndContext(System.IO.TextWriter writer, string virtualPath, int startPosition, int length, bool isLiteral) { }
EndContext(string virtualPath, int startPosition, int length, bool isLiteral)507         protected internal void EndContext(string virtualPath, int startPosition, int length, bool isLiteral) { }
508         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Execute()509         public abstract void Execute();
GetOutputWriter()510         protected internal virtual System.IO.TextWriter GetOutputWriter() { throw null; }
Href(string path, params object[] pathParts)511         public virtual string Href(string path, params object[] pathParts) { throw null; }
NormalizePath(string path)512         public virtual string NormalizePath(string path) { throw null; }
Write(object value)513         public abstract void Write(object value);
Write(System.Web.WebPages.HelperResult result)514         public abstract void Write(System.Web.WebPages.HelperResult result);
WriteAttribute(string name, System.Web.WebPages.Instrumentation.PositionTagged<string> prefix, System.Web.WebPages.Instrumentation.PositionTagged<string> suffix, params System.Web.WebPages.AttributeValue[] values)515         public virtual void WriteAttribute(string name, System.Web.WebPages.Instrumentation.PositionTagged<string> prefix, System.Web.WebPages.Instrumentation.PositionTagged<string> suffix, params System.Web.WebPages.AttributeValue[] values) { }
WriteAttributeTo(System.IO.TextWriter writer, string name, System.Web.WebPages.Instrumentation.PositionTagged<string> prefix, System.Web.WebPages.Instrumentation.PositionTagged<string> suffix, params System.Web.WebPages.AttributeValue[] values)516         public virtual void WriteAttributeTo(System.IO.TextWriter writer, string name, System.Web.WebPages.Instrumentation.PositionTagged<string> prefix, System.Web.WebPages.Instrumentation.PositionTagged<string> suffix, params System.Web.WebPages.AttributeValue[] values) { }
WriteAttributeTo(string pageVirtualPath, System.IO.TextWriter writer, string name, System.Web.WebPages.Instrumentation.PositionTagged<string> prefix, System.Web.WebPages.Instrumentation.PositionTagged<string> suffix, params System.Web.WebPages.AttributeValue[] values)517         protected internal virtual void WriteAttributeTo(string pageVirtualPath, System.IO.TextWriter writer, string name, System.Web.WebPages.Instrumentation.PositionTagged<string> prefix, System.Web.WebPages.Instrumentation.PositionTagged<string> suffix, params System.Web.WebPages.AttributeValue[] values) { }
WriteLiteral(object value)518         public abstract void WriteLiteral(object value);
WriteLiteralTo(System.IO.TextWriter writer, object content)519         public static void WriteLiteralTo(System.IO.TextWriter writer, object content) { }
WriteTo(System.IO.TextWriter writer, object content)520         public static void WriteTo(System.IO.TextWriter writer, object content) { }
WriteTo(System.IO.TextWriter writer, System.Web.WebPages.HelperResult content)521         public static void WriteTo(System.IO.TextWriter writer, System.Web.WebPages.HelperResult content) { }
522     }
523     public partial class WebPageHttpHandler : System.Web.IHttpHandler, System.Web.SessionState.IRequiresSessionState
524     {
525         public static readonly string WebPagesVersionHeaderName;
WebPageHttpHandler(System.Web.WebPages.WebPage webPage)526         public WebPageHttpHandler(System.Web.WebPages.WebPage webPage) { }
527         public static bool DisableWebPagesResponseHeader { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
528         public virtual bool IsReusable { get { throw null; } }
CreateFromVirtualPath(string virtualPath)529         public static System.Web.IHttpHandler CreateFromVirtualPath(string virtualPath) { throw null; }
GetRegisteredExtensions()530         public static System.Collections.ObjectModel.ReadOnlyCollection<string> GetRegisteredExtensions() { throw null; }
ProcessRequest(System.Web.HttpContext context)531         public virtual void ProcessRequest(System.Web.HttpContext context) { }
RegisterExtension(string extension)532         public static void RegisterExtension(string extension) { }
533     }
534     public abstract partial class WebPageRenderingBase : System.Web.WebPages.WebPageExecutingBase, System.Web.WebPages.ITemplateFile
535     {
WebPageRenderingBase()536         protected WebPageRenderingBase() { }
537         public virtual System.Web.Caching.Cache Cache { get { throw null; } }
538         public string Culture { get { throw null; } set { } }
539         protected internal System.Web.WebPages.IDisplayMode DisplayMode { get { throw null; } }
540         public virtual bool IsAjax { get { throw null; } }
541         public virtual bool IsPost { get { throw null; } }
542         public abstract string Layout { get; set; }
543         public abstract dynamic Page { get; }
544         public System.Web.WebPages.WebPageContext PageContext { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
545         public abstract System.Collections.Generic.IDictionary<object,dynamic> PageData { get; }
546         public System.Web.Profile.ProfileBase Profile { get { throw null; } }
547         public virtual System.Web.HttpRequestBase Request { get { throw null; } }
548         public virtual System.Web.HttpResponseBase Response { get { throw null; } }
549         public virtual System.Web.HttpServerUtilityBase Server { get { throw null; } }
550         public virtual System.Web.HttpSessionStateBase Session { get { throw null; } }
551         public virtual System.Web.WebPages.TemplateFileInfo TemplateInfo { get { throw null; } }
552         public string UICulture { get { throw null; } set { } }
553         public virtual System.Collections.Generic.IList<string> UrlData { get { throw null; } }
554         public virtual System.Security.Principal.IPrincipal User { get { throw null; } }
ExecutePageHierarchy()555         public abstract void ExecutePageHierarchy();
RenderPage(string path, params object[] data)556         public abstract System.Web.WebPages.HelperResult RenderPage(string path, params object[] data);
557     }
558 }
559 namespace System.Web.WebPages.Html
560 {
561     public partial class HtmlHelper
562     {
HtmlHelper()563         internal HtmlHelper() { }
564         public static string IdAttributeDotReplacement { get { throw null; } set { } }
565         public static bool UnobtrusiveJavaScriptEnabled { get { throw null; } set { } }
566         public static string ValidationInputCssClassName { get { throw null; } set { } }
567         public static string ValidationInputValidCssClassName { get { throw null; } set { } }
568         public static string ValidationMessageCssClassName { get { throw null; } set { } }
569         public static string ValidationMessageValidCssClassName { get { throw null; } set { } }
570         public static string ValidationSummaryClass { get { throw null; } set { } }
571         public static string ValidationSummaryValidClass { get { throw null; } set { } }
AttributeEncode(object value)572         public string AttributeEncode(object value) { throw null; }
AttributeEncode(string value)573         public string AttributeEncode(string value) { throw null; }
CheckBox(string name)574         public System.Web.IHtmlString CheckBox(string name) { throw null; }
CheckBox(string name, bool isChecked)575         public System.Web.IHtmlString CheckBox(string name, bool isChecked) { throw null; }
CheckBox(string name, bool isChecked, System.Collections.Generic.IDictionary<string, object> htmlAttributes)576         public System.Web.IHtmlString CheckBox(string name, bool isChecked, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
CheckBox(string name, bool isChecked, object htmlAttributes)577         public System.Web.IHtmlString CheckBox(string name, bool isChecked, object htmlAttributes) { throw null; }
CheckBox(string name, System.Collections.Generic.IDictionary<string, object> htmlAttributes)578         public System.Web.IHtmlString CheckBox(string name, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
CheckBox(string name, object htmlAttributes)579         public System.Web.IHtmlString CheckBox(string name, object htmlAttributes) { throw null; }
DropDownList(string name, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList)580         public System.Web.IHtmlString DropDownList(string name, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList) { throw null; }
DropDownList(string name, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, System.Collections.Generic.IDictionary<string, object> htmlAttributes)581         public System.Web.IHtmlString DropDownList(string name, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
DropDownList(string name, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object htmlAttributes)582         public System.Web.IHtmlString DropDownList(string name, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object htmlAttributes) { throw null; }
DropDownList(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList)583         public System.Web.IHtmlString DropDownList(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList) { throw null; }
DropDownList(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, System.Collections.Generic.IDictionary<string, object> htmlAttributes)584         public System.Web.IHtmlString DropDownList(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
DropDownList(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object htmlAttributes)585         public System.Web.IHtmlString DropDownList(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object htmlAttributes) { throw null; }
DropDownList(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object selectedValue, System.Collections.Generic.IDictionary<string, object> htmlAttributes)586         public System.Web.IHtmlString DropDownList(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object selectedValue, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
DropDownList(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object selectedValue, object htmlAttributes)587         public System.Web.IHtmlString DropDownList(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object selectedValue, object htmlAttributes) { throw null; }
Encode(object value)588         public string Encode(object value) { throw null; }
Encode(string value)589         public string Encode(string value) { throw null; }
Hidden(string name)590         public System.Web.IHtmlString Hidden(string name) { throw null; }
Hidden(string name, object value)591         public System.Web.IHtmlString Hidden(string name, object value) { throw null; }
Hidden(string name, object value, System.Collections.Generic.IDictionary<string, object> htmlAttributes)592         public System.Web.IHtmlString Hidden(string name, object value, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
Hidden(string name, object value, object htmlAttributes)593         public System.Web.IHtmlString Hidden(string name, object value, object htmlAttributes) { throw null; }
Label(string labelText)594         public System.Web.IHtmlString Label(string labelText) { throw null; }
Label(string labelText, object attributes)595         public System.Web.IHtmlString Label(string labelText, object attributes) { throw null; }
Label(string labelText, string labelFor)596         public System.Web.IHtmlString Label(string labelText, string labelFor) { throw null; }
Label(string labelText, string labelFor, System.Collections.Generic.IDictionary<string, object> attributes)597         public System.Web.IHtmlString Label(string labelText, string labelFor, System.Collections.Generic.IDictionary<string, object> attributes) { throw null; }
Label(string labelText, string labelFor, object attributes)598         public System.Web.IHtmlString Label(string labelText, string labelFor, object attributes) { throw null; }
ListBox(string name, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList)599         public System.Web.IHtmlString ListBox(string name, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList) { throw null; }
ListBox(string name, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, System.Collections.Generic.IDictionary<string, object> htmlAttributes)600         public System.Web.IHtmlString ListBox(string name, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
ListBox(string name, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object htmlAttributes)601         public System.Web.IHtmlString ListBox(string name, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object htmlAttributes) { throw null; }
ListBox(string name, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object selectedValues, int size, bool allowMultiple)602         public System.Web.IHtmlString ListBox(string name, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object selectedValues, int size, bool allowMultiple) { throw null; }
ListBox(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList)603         public System.Web.IHtmlString ListBox(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList) { throw null; }
ListBox(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, System.Collections.Generic.IDictionary<string, object> htmlAttributes)604         public System.Web.IHtmlString ListBox(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
ListBox(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object htmlAttributes)605         public System.Web.IHtmlString ListBox(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object htmlAttributes) { throw null; }
ListBox(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object selectedValues, System.Collections.Generic.IDictionary<string, object> htmlAttributes)606         public System.Web.IHtmlString ListBox(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object selectedValues, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
ListBox(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object selectedValues, int size, bool allowMultiple)607         public System.Web.IHtmlString ListBox(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object selectedValues, int size, bool allowMultiple) { throw null; }
ListBox(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object selectedValues, int size, bool allowMultiple, System.Collections.Generic.IDictionary<string, object> htmlAttributes)608         public System.Web.IHtmlString ListBox(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object selectedValues, int size, bool allowMultiple, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
ListBox(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object selectedValues, int size, bool allowMultiple, object htmlAttributes)609         public System.Web.IHtmlString ListBox(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object selectedValues, int size, bool allowMultiple, object htmlAttributes) { throw null; }
ListBox(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object selectedValues, object htmlAttributes)610         public System.Web.IHtmlString ListBox(string name, string defaultOption, System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem> selectList, object selectedValues, object htmlAttributes) { throw null; }
Password(string name)611         public System.Web.IHtmlString Password(string name) { throw null; }
Password(string name, object value)612         public System.Web.IHtmlString Password(string name, object value) { throw null; }
Password(string name, object value, System.Collections.Generic.IDictionary<string, object> htmlAttributes)613         public System.Web.IHtmlString Password(string name, object value, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
Password(string name, object value, object htmlAttributes)614         public System.Web.IHtmlString Password(string name, object value, object htmlAttributes) { throw null; }
RadioButton(string name, object value)615         public System.Web.IHtmlString RadioButton(string name, object value) { throw null; }
RadioButton(string name, object value, bool isChecked)616         public System.Web.IHtmlString RadioButton(string name, object value, bool isChecked) { throw null; }
RadioButton(string name, object value, bool isChecked, System.Collections.Generic.IDictionary<string, object> htmlAttributes)617         public System.Web.IHtmlString RadioButton(string name, object value, bool isChecked, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
RadioButton(string name, object value, bool isChecked, object htmlAttributes)618         public System.Web.IHtmlString RadioButton(string name, object value, bool isChecked, object htmlAttributes) { throw null; }
RadioButton(string name, object value, System.Collections.Generic.IDictionary<string, object> htmlAttributes)619         public System.Web.IHtmlString RadioButton(string name, object value, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
RadioButton(string name, object value, object htmlAttributes)620         public System.Web.IHtmlString RadioButton(string name, object value, object htmlAttributes) { throw null; }
Raw(object value)621         public System.Web.IHtmlString Raw(object value) { throw null; }
Raw(string value)622         public System.Web.IHtmlString Raw(string value) { throw null; }
TextArea(string name)623         public System.Web.IHtmlString TextArea(string name) { throw null; }
TextArea(string name, System.Collections.Generic.IDictionary<string, object> htmlAttributes)624         public System.Web.IHtmlString TextArea(string name, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
TextArea(string name, object htmlAttributes)625         public System.Web.IHtmlString TextArea(string name, object htmlAttributes) { throw null; }
TextArea(string name, string value)626         public System.Web.IHtmlString TextArea(string name, string value) { throw null; }
TextArea(string name, string value, System.Collections.Generic.IDictionary<string, object> htmlAttributes)627         public System.Web.IHtmlString TextArea(string name, string value, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
TextArea(string name, string value, int rows, int columns, System.Collections.Generic.IDictionary<string, object> htmlAttributes)628         public System.Web.IHtmlString TextArea(string name, string value, int rows, int columns, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
TextArea(string name, string value, int rows, int columns, object htmlAttributes)629         public System.Web.IHtmlString TextArea(string name, string value, int rows, int columns, object htmlAttributes) { throw null; }
TextArea(string name, string value, object htmlAttributes)630         public System.Web.IHtmlString TextArea(string name, string value, object htmlAttributes) { throw null; }
TextBox(string name)631         public System.Web.IHtmlString TextBox(string name) { throw null; }
TextBox(string name, object value)632         public System.Web.IHtmlString TextBox(string name, object value) { throw null; }
TextBox(string name, object value, System.Collections.Generic.IDictionary<string, object> htmlAttributes)633         public System.Web.IHtmlString TextBox(string name, object value, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
TextBox(string name, object value, object htmlAttributes)634         public System.Web.IHtmlString TextBox(string name, object value, object htmlAttributes) { throw null; }
ValidationMessage(string name)635         public System.Web.IHtmlString ValidationMessage(string name) { throw null; }
ValidationMessage(string name, System.Collections.Generic.IDictionary<string, object> htmlAttributes)636         public System.Web.IHtmlString ValidationMessage(string name, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
ValidationMessage(string name, object htmlAttributes)637         public System.Web.IHtmlString ValidationMessage(string name, object htmlAttributes) { throw null; }
ValidationMessage(string name, string message)638         public System.Web.IHtmlString ValidationMessage(string name, string message) { throw null; }
ValidationMessage(string name, string message, System.Collections.Generic.IDictionary<string, object> htmlAttributes)639         public System.Web.IHtmlString ValidationMessage(string name, string message, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
ValidationMessage(string name, string message, object htmlAttributes)640         public System.Web.IHtmlString ValidationMessage(string name, string message, object htmlAttributes) { throw null; }
ValidationSummary()641         public System.Web.IHtmlString ValidationSummary() { throw null; }
ValidationSummary(bool excludeFieldErrors)642         public System.Web.IHtmlString ValidationSummary(bool excludeFieldErrors) { throw null; }
ValidationSummary(System.Collections.Generic.IDictionary<string, object> htmlAttributes)643         public System.Web.IHtmlString ValidationSummary(System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
ValidationSummary(object htmlAttributes)644         public System.Web.IHtmlString ValidationSummary(object htmlAttributes) { throw null; }
ValidationSummary(string message)645         public System.Web.IHtmlString ValidationSummary(string message) { throw null; }
ValidationSummary(string message, bool excludeFieldErrors, System.Collections.Generic.IDictionary<string, object> htmlAttributes)646         public System.Web.IHtmlString ValidationSummary(string message, bool excludeFieldErrors, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
ValidationSummary(string message, bool excludeFieldErrors, object htmlAttributes)647         public System.Web.IHtmlString ValidationSummary(string message, bool excludeFieldErrors, object htmlAttributes) { throw null; }
ValidationSummary(string message, System.Collections.Generic.IDictionary<string, object> htmlAttributes)648         public System.Web.IHtmlString ValidationSummary(string message, System.Collections.Generic.IDictionary<string, object> htmlAttributes) { throw null; }
ValidationSummary(string message, object htmlAttributes)649         public System.Web.IHtmlString ValidationSummary(string message, object htmlAttributes) { throw null; }
650     }
651     public partial class ModelState
652     {
ModelState()653         public ModelState() { }
654         public System.Collections.Generic.IList<string> Errors { get { throw null; } }
655         public object Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
656     }
657     public partial class ModelStateDictionary : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string, System.Web.WebPages.Html.ModelState>>, System.Collections.Generic.IDictionary<string, System.Web.WebPages.Html.ModelState>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, System.Web.WebPages.Html.ModelState>>, System.Collections.IEnumerable
658     {
ModelStateDictionary()659         public ModelStateDictionary() { }
ModelStateDictionary(System.Web.WebPages.Html.ModelStateDictionary dictionary)660         public ModelStateDictionary(System.Web.WebPages.Html.ModelStateDictionary dictionary) { }
661         public int Count { get { throw null; } }
662         public bool IsReadOnly { get { throw null; } }
663         public bool IsValid { get { throw null; } }
664         public System.Web.WebPages.Html.ModelState this[string key] { get { throw null; } set { } }
665         public System.Collections.Generic.ICollection<string> Keys { get { throw null; } }
666         public System.Collections.Generic.ICollection<System.Web.WebPages.Html.ModelState> Values { get { throw null; } }
Add(System.Collections.Generic.KeyValuePair<string, System.Web.WebPages.Html.ModelState> item)667         public void Add(System.Collections.Generic.KeyValuePair<string, System.Web.WebPages.Html.ModelState> item) { }
Add(string key, System.Web.WebPages.Html.ModelState value)668         public void Add(string key, System.Web.WebPages.Html.ModelState value) { }
AddError(string key, string errorMessage)669         public void AddError(string key, string errorMessage) { }
AddFormError(string errorMessage)670         public void AddFormError(string errorMessage) { }
Clear()671         public void Clear() { }
Contains(System.Collections.Generic.KeyValuePair<string, System.Web.WebPages.Html.ModelState> item)672         public bool Contains(System.Collections.Generic.KeyValuePair<string, System.Web.WebPages.Html.ModelState> item) { throw null; }
ContainsKey(string key)673         public bool ContainsKey(string key) { throw null; }
CopyTo(System.Collections.Generic.KeyValuePair<string, System.Web.WebPages.Html.ModelState>[] array, int arrayIndex)674         public void CopyTo(System.Collections.Generic.KeyValuePair<string, System.Web.WebPages.Html.ModelState>[] array, int arrayIndex) { }
GetEnumerator()675         public System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, System.Web.WebPages.Html.ModelState>> GetEnumerator() { throw null; }
IsValidField(string key)676         public bool IsValidField(string key) { throw null; }
Merge(System.Web.WebPages.Html.ModelStateDictionary dictionary)677         public void Merge(System.Web.WebPages.Html.ModelStateDictionary dictionary) { }
Remove(System.Collections.Generic.KeyValuePair<string, System.Web.WebPages.Html.ModelState> item)678         public bool Remove(System.Collections.Generic.KeyValuePair<string, System.Web.WebPages.Html.ModelState> item) { throw null; }
Remove(string key)679         public bool Remove(string key) { throw null; }
SetModelValue(string key, object value)680         public void SetModelValue(string key, object value) { }
System.Collections.IEnumerable.GetEnumerator()681         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
TryGetValue(string key, out System.Web.WebPages.Html.ModelState value)682         public bool TryGetValue(string key, out System.Web.WebPages.Html.ModelState value) { value = default(System.Web.WebPages.Html.ModelState); throw null; }
683     }
684     public partial class SelectListItem
685     {
SelectListItem()686         public SelectListItem() { }
SelectListItem(System.Web.WebPages.Html.SelectListItem item)687         public SelectListItem(System.Web.WebPages.Html.SelectListItem item) { }
688         public bool Selected { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
689         public string Text { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
690         public string Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
691     }
692 }
693 namespace System.Web.WebPages.Instrumentation
694 {
695     public partial class InstrumentationService
696     {
InstrumentationService()697         public InstrumentationService() { }
698         public bool IsAvailable { get { throw null; } }
BeginContext(System.Web.HttpContextBase context, string virtualPath, System.IO.TextWriter writer, int startPosition, int length, bool isLiteral)699         public void BeginContext(System.Web.HttpContextBase context, string virtualPath, System.IO.TextWriter writer, int startPosition, int length, bool isLiteral) { }
EndContext(System.Web.HttpContextBase context, string virtualPath, System.IO.TextWriter writer, int startPosition, int length, bool isLiteral)700         public void EndContext(System.Web.HttpContextBase context, string virtualPath, System.IO.TextWriter writer, int startPosition, int length, bool isLiteral) { }
701     }
702     [System.Diagnostics.DebuggerDisplayAttribute("({Position})\"{Value}\"")]
703     public partial class PositionTagged<T>
704     {
PositionTagged(T value, int offset)705         public PositionTagged(T value, int offset) { }
706         public int Position { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
707         public T Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
Equals(object obj)708         public override bool Equals(object obj) { throw null; }
GetHashCode()709         public override int GetHashCode() { throw null; }
operator ==(System.Web.WebPages.Instrumentation.PositionTagged<T> left, System.Web.WebPages.Instrumentation.PositionTagged<T> right)710         public static bool operator ==(System.Web.WebPages.Instrumentation.PositionTagged<T> left, System.Web.WebPages.Instrumentation.PositionTagged<T> right) { throw null; }
operator System.Web.WebPages.Instrumentation.PositionTagged<T>(System.Tuple<T, int> value)711         public static implicit operator System.Web.WebPages.Instrumentation.PositionTagged<T> (System.Tuple<T, int> value) { throw null; }
operator T(System.Web.WebPages.Instrumentation.PositionTagged<T> value)712         public static implicit operator T (System.Web.WebPages.Instrumentation.PositionTagged<T> value) { throw null; }
operator !=(System.Web.WebPages.Instrumentation.PositionTagged<T> left, System.Web.WebPages.Instrumentation.PositionTagged<T> right)713         public static bool operator !=(System.Web.WebPages.Instrumentation.PositionTagged<T> left, System.Web.WebPages.Instrumentation.PositionTagged<T> right) { throw null; }
ToString()714         public override string ToString() { throw null; }
715     }
716 }
717 namespace System.Web.WebPages.Scope
718 {
719     public partial class AspNetRequestScopeStorageProvider : System.Web.WebPages.Scope.IScopeStorageProvider
720     {
AspNetRequestScopeStorageProvider()721         public AspNetRequestScopeStorageProvider() { }
722         public System.Collections.Generic.IDictionary<object, object> ApplicationScope { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
723         public System.Collections.Generic.IDictionary<object, object> CurrentScope { get { throw null; } set { } }
724         public System.Collections.Generic.IDictionary<object, object> GlobalScope { get { throw null; } }
725         public System.Collections.Generic.IDictionary<object, object> RequestScope { get { throw null; } }
726     }
727     public partial interface IScopeStorageProvider
728     {
729         System.Collections.Generic.IDictionary<object, object> CurrentScope { get; set; }
730         System.Collections.Generic.IDictionary<object, object> GlobalScope { get; }
731     }
732     public static partial class ScopeStorage
733     {
734         public static System.Web.WebPages.Scope.IScopeStorageProvider CurrentProvider { get { throw null; } set { } }
735         public static System.Collections.Generic.IDictionary<object, object> CurrentScope { get { throw null; } }
736         public static System.Collections.Generic.IDictionary<object, object> GlobalScope { get { throw null; } }
CreateTransientScope()737         public static System.IDisposable CreateTransientScope() { throw null; }
CreateTransientScope(System.Collections.Generic.IDictionary<object, object> context)738         public static System.IDisposable CreateTransientScope(System.Collections.Generic.IDictionary<object, object> context) { throw null; }
739     }
740     public partial class ScopeStorageDictionary : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<object, object>>, System.Collections.Generic.IDictionary<object, object>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<object, object>>, System.Collections.IEnumerable
741     {
ScopeStorageDictionary()742         public ScopeStorageDictionary() { }
ScopeStorageDictionary(System.Collections.Generic.IDictionary<object, object> baseScope)743         public ScopeStorageDictionary(System.Collections.Generic.IDictionary<object, object> baseScope) { }
744         protected System.Collections.Generic.IDictionary<object, object> BackingStore { get { throw null; } }
745         protected System.Collections.Generic.IDictionary<object, object> BaseScope { get { throw null; } }
746         public virtual int Count { get { throw null; } }
747         public virtual bool IsReadOnly { get { throw null; } }
748         public object this[object key] { get { throw null; } set { } }
749         public virtual System.Collections.Generic.ICollection<object> Keys { get { throw null; } }
750         public virtual System.Collections.Generic.ICollection<object> Values { get { throw null; } }
Add(System.Collections.Generic.KeyValuePair<object, object> item)751         public virtual void Add(System.Collections.Generic.KeyValuePair<object, object> item) { }
Add(object key, object value)752         public virtual void Add(object key, object value) { }
Clear()753         public virtual void Clear() { }
Contains(System.Collections.Generic.KeyValuePair<object, object> item)754         public virtual bool Contains(System.Collections.Generic.KeyValuePair<object, object> item) { throw null; }
ContainsKey(object key)755         public virtual bool ContainsKey(object key) { throw null; }
CopyTo(System.Collections.Generic.KeyValuePair<object, object>[] array, int arrayIndex)756         public virtual void CopyTo(System.Collections.Generic.KeyValuePair<object, object>[] array, int arrayIndex) { }
GetEnumerator()757         public virtual System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<object, object>> GetEnumerator() { throw null; }
GetItems()758         protected virtual System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<object, object>> GetItems() { throw null; }
Remove(System.Collections.Generic.KeyValuePair<object, object> item)759         public virtual bool Remove(System.Collections.Generic.KeyValuePair<object, object> item) { throw null; }
Remove(object key)760         public virtual bool Remove(object key) { throw null; }
SetValue(object key, object value)761         public virtual void SetValue(object key, object value) { }
System.Collections.IEnumerable.GetEnumerator()762         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
TryGetValue(object key, out object value)763         public virtual bool TryGetValue(object key, out object value) { value = default(object); throw null; }
764     }
765     public partial class StaticScopeStorageProvider : System.Web.WebPages.Scope.IScopeStorageProvider
766     {
StaticScopeStorageProvider()767         public StaticScopeStorageProvider() { }
768         public System.Collections.Generic.IDictionary<object, object> CurrentScope { get { throw null; } set { } }
769         public System.Collections.Generic.IDictionary<object, object> GlobalScope { get { throw null; } }
770     }
771 }
772