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("4.0.0.0")]
6 [assembly:System.CLSCompliantAttribute(true)]
7 [assembly:System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute.DebuggingModes)(2))]
8 [assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")]
9 [assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")]
10 [assembly:System.Reflection.AssemblyDefaultAliasAttribute("System.Web.Extensions.dll")]
11 [assembly:System.Reflection.AssemblyDescriptionAttribute("System.Web.Extensions.dll")]
12 [assembly:System.Reflection.AssemblyFileVersionAttribute("4.6.57.0")]
13 [assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.6.57.0")]
14 [assembly:System.Reflection.AssemblyProductAttribute("Mono Common Language Infrastructure")]
15 [assembly:System.Reflection.AssemblyTitleAttribute("System.Web.Extensions.dll")]
16 [assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
17 [assembly:System.Resources.SatelliteContractVersionAttribute("4.0.0.0")]
18 [assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
19 [assembly:System.Runtime.CompilerServices.DependencyAttribute("System,", (System.Runtime.CompilerServices.LoadHint)(1))]
20 [assembly:System.Runtime.CompilerServices.ReferenceAssemblyAttribute]
21 [assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
22 [assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
23 [assembly:System.Security.AllowPartiallyTrustedCallersAttribute]
24 [assembly:System.Web.UI.TagPrefixAttribute("System.Web.UI", "asp")]
25 [assembly:System.Web.UI.TagPrefixAttribute("System.Web.UI.WebControls", "asp")]
26 [assembly:System.Web.UI.WebResourceAttribute("MicrosoftAjax.debug.js", "application/x-javascript")]
27 [assembly:System.Web.UI.WebResourceAttribute("MicrosoftAjax.js", "application/x-javascript")]
28 [assembly:System.Web.UI.WebResourceAttribute("MicrosoftAjaxTimer.debug.js", "application/x-javascript")]
29 [assembly:System.Web.UI.WebResourceAttribute("MicrosoftAjaxTimer.js", "application/x-javascript")]
30 [assembly:System.Web.UI.WebResourceAttribute("MicrosoftAjaxWebForms.debug.js", "application/x-javascript")]
31 [assembly:System.Web.UI.WebResourceAttribute("MicrosoftAjaxWebForms.js", "application/x-javascript")]
32 [assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
33 namespace System.Web.ApplicationServices
34 {
35     public partial class ApplicationServicesHostFactory : System.ServiceModel.Activation.ServiceHostFactory
36     {
ApplicationServicesHostFactory()37         public ApplicationServicesHostFactory() { }
CreateServiceHost(System.Type serviceType, System.Uri[] baseAddresses)38         protected override System.ServiceModel.ServiceHost CreateServiceHost(System.Type serviceType, System.Uri[] baseAddresses) { throw null; }
39     }
40     public partial class AuthenticatingEventArgs : System.EventArgs
41     {
AuthenticatingEventArgs()42         internal AuthenticatingEventArgs() { }
43         public bool Authenticated { get { throw null; } set { } }
44         public bool AuthenticationIsComplete { get { throw null; } set { } }
45         public string CustomCredential { get { throw null; } }
46         public string Password { get { throw null; } }
47         public string UserName { get { throw null; } }
48     }
49     public partial class AuthenticationService
50     {
AuthenticationService()51         public AuthenticationService() { }
52         public static event System.EventHandler<System.Web.ApplicationServices.AuthenticatingEventArgs> Authenticating { add { } remove { } }
53         public static event System.EventHandler<System.Web.ApplicationServices.CreatingCookieEventArgs> CreatingCookie { add { } remove { } }
IsLoggedIn()54         public bool IsLoggedIn() { throw null; }
Login(string username, string password, string customCredential, bool isPersistent)55         public bool Login(string username, string password, string customCredential, bool isPersistent) { throw null; }
Logout()56         public void Logout() { }
ValidateUser(string username, string password, string customCredential)57         public bool ValidateUser(string username, string password, string customCredential) { throw null; }
58     }
59     public partial class CreatingCookieEventArgs : System.EventArgs
60     {
CreatingCookieEventArgs()61         internal CreatingCookieEventArgs() { }
62         public bool CookieIsSet { get { throw null; } set { } }
63         public string CustomCredential { get { throw null; } }
64         public bool IsPersistent { get { throw null; } }
65         public string Password { get { throw null; } }
66         public string UserName { get { throw null; } }
67     }
68     public static partial class KnownTypesProvider
69     {
GetKnownTypes(System.Reflection.ICustomAttributeProvider knownTypeAttributeTarget)70         public static System.Type[] GetKnownTypes(System.Reflection.ICustomAttributeProvider knownTypeAttributeTarget) { throw null; }
71     }
72     public partial class ProfilePropertyMetadata : System.Runtime.Serialization.IExtensibleDataObject
73     {
ProfilePropertyMetadata()74         public ProfilePropertyMetadata() { }
75         public bool AllowAnonymousAccess { get { throw null; } set { } }
76         public string DefaultValue { get { throw null; } set { } }
77         public System.Runtime.Serialization.ExtensionDataObject ExtensionData { get { throw null; } set { } }
78         public bool IsReadOnly { get { throw null; } set { } }
79         public string PropertyName { get { throw null; } set { } }
80         public int SerializeAs { get { throw null; } set { } }
81         public string TypeName { get { throw null; } set { } }
82     }
83     public partial class ProfileService
84     {
ProfileService()85         public ProfileService() { }
86         public static event System.EventHandler<System.Web.ApplicationServices.ValidatingPropertiesEventArgs> ValidatingProperties { add { } remove { } }
GetAllPropertiesForCurrentUser(bool authenticatedUserOnly)87         public System.Collections.Generic.Dictionary<string, object> GetAllPropertiesForCurrentUser(bool authenticatedUserOnly) { throw null; }
GetPropertiesForCurrentUser(System.Collections.Generic.IEnumerable<string> properties, bool authenticatedUserOnly)88         public System.Collections.Generic.Dictionary<string, object> GetPropertiesForCurrentUser(System.Collections.Generic.IEnumerable<string> properties, bool authenticatedUserOnly) { throw null; }
GetPropertiesMetadata()89         public System.Web.ApplicationServices.ProfilePropertyMetadata[] GetPropertiesMetadata() { throw null; }
SetPropertiesForCurrentUser(System.Collections.Generic.IDictionary<string, object> values, bool authenticatedUserOnly)90         public System.Collections.ObjectModel.Collection<string> SetPropertiesForCurrentUser(System.Collections.Generic.IDictionary<string, object> values, bool authenticatedUserOnly) { throw null; }
91     }
92     public partial class RoleService
93     {
RoleService()94         public RoleService() { }
95         public static event System.EventHandler<System.Web.ApplicationServices.SelectingProviderEventArgs> SelectingProvider { add { } remove { } }
GetRolesForCurrentUser()96         public string[] GetRolesForCurrentUser() { throw null; }
IsCurrentUserInRole(string role)97         public bool IsCurrentUserInRole(string role) { throw null; }
98     }
99     public partial class SelectingProviderEventArgs : System.EventArgs
100     {
SelectingProviderEventArgs()101         internal SelectingProviderEventArgs() { }
102         public string ProviderName { get { throw null; } set { } }
103         public System.Security.Principal.IPrincipal User { get { throw null; } }
104     }
105     public partial class ValidatingPropertiesEventArgs : System.EventArgs
106     {
ValidatingPropertiesEventArgs()107         internal ValidatingPropertiesEventArgs() { }
108         public System.Collections.ObjectModel.Collection<string> FailedProperties { get { throw null; } }
109         public System.Collections.Generic.IDictionary<string, object> Properties { get { throw null; } }
110     }
111 }
112 namespace System.Web.ClientServices
113 {
114     public partial class ClientFormsIdentity : System.IDisposable, System.Security.Principal.IIdentity
115     {
ClientFormsIdentity(string name, string password, System.Web.Security.MembershipProvider provider, string authenticationType, bool isAuthenticated, System.Net.CookieContainer authenticationCookies)116         public ClientFormsIdentity(string name, string password, System.Web.Security.MembershipProvider provider, string authenticationType, bool isAuthenticated, System.Net.CookieContainer authenticationCookies) { }
117         public System.Net.CookieContainer AuthenticationCookies { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
118         public string AuthenticationType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
119         public bool IsAuthenticated { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
120         public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
121         public System.Web.Security.MembershipProvider Provider { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
Dispose()122         public void Dispose() { }
Dispose(bool disposing)123         protected virtual void Dispose(bool disposing) { }
RevalidateUser()124         public void RevalidateUser() { }
125     }
126     public partial class ClientRolePrincipal : System.Security.Principal.IPrincipal
127     {
ClientRolePrincipal(System.Security.Principal.IIdentity identity)128         public ClientRolePrincipal(System.Security.Principal.IIdentity identity) { }
129         public System.Security.Principal.IIdentity Identity { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
IsInRole(string role)130         public bool IsInRole(string role) { throw null; }
131     }
132     public static partial class ConnectivityStatus
133     {
134         public static bool IsOffline { get { throw null; } set { } }
135     }
136 }
137 namespace System.Web.ClientServices.Providers
138 {
139     public partial class ClientFormsAuthenticationCredentials
140     {
ClientFormsAuthenticationCredentials(string username, string password, bool rememberMe)141         public ClientFormsAuthenticationCredentials(string username, string password, bool rememberMe) { }
142         public string Password { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
143         public bool RememberMe { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
144         public string UserName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
145     }
146     public partial class ClientFormsAuthenticationMembershipProvider : System.Web.Security.MembershipProvider
147     {
ClientFormsAuthenticationMembershipProvider()148         public ClientFormsAuthenticationMembershipProvider() { }
149         public override string ApplicationName { get { throw null; } set { } }
150         public override bool EnablePasswordReset { get { throw null; } }
151         public override bool EnablePasswordRetrieval { get { throw null; } }
152         public override int MaxInvalidPasswordAttempts { get { throw null; } }
153         public override int MinRequiredNonAlphanumericCharacters { get { throw null; } }
154         public override int MinRequiredPasswordLength { get { throw null; } }
155         public override int PasswordAttemptWindow { get { throw null; } }
156         public override System.Web.Security.MembershipPasswordFormat PasswordFormat { get { throw null; } }
157         public override string PasswordStrengthRegularExpression { get { throw null; } }
158         public override bool RequiresQuestionAndAnswer { get { throw null; } }
159         public override bool RequiresUniqueEmail { get { throw null; } }
160         public string ServiceUri { get { throw null; } set { } }
161         public event System.EventHandler<System.Web.ClientServices.Providers.UserValidatedEventArgs> UserValidated { add { } remove { } }
ChangePassword(string username, string oldPassword, string newPassword)162         public override bool ChangePassword(string username, string oldPassword, string newPassword) { throw null; }
ChangePasswordQuestionAndAnswer(string username, string password, string newPasswordQuestion, string newPasswordAnswer)163         public override bool ChangePasswordQuestionAndAnswer(string username, string password, string newPasswordQuestion, string newPasswordAnswer) { throw null; }
CreateUser(string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, object providerUserKey, out System.Web.Security.MembershipCreateStatus status)164         public override System.Web.Security.MembershipUser CreateUser(string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, object providerUserKey, out System.Web.Security.MembershipCreateStatus status) { status = default(System.Web.Security.MembershipCreateStatus); throw null; }
DeleteUser(string username, bool deleteAllRelatedData)165         public override bool DeleteUser(string username, bool deleteAllRelatedData) { throw null; }
FindUsersByEmail(string emailToMatch, int pageIndex, int pageSize, out int totalRecords)166         public override System.Web.Security.MembershipUserCollection FindUsersByEmail(string emailToMatch, int pageIndex, int pageSize, out int totalRecords) { totalRecords = default(int); throw null; }
FindUsersByName(string usernameToMatch, int pageIndex, int pageSize, out int totalRecords)167         public override System.Web.Security.MembershipUserCollection FindUsersByName(string usernameToMatch, int pageIndex, int pageSize, out int totalRecords) { totalRecords = default(int); throw null; }
GetAllUsers(int pageIndex, int pageSize, out int totalRecords)168         public override System.Web.Security.MembershipUserCollection GetAllUsers(int pageIndex, int pageSize, out int totalRecords) { totalRecords = default(int); throw null; }
GetNumberOfUsersOnline()169         public override int GetNumberOfUsersOnline() { throw null; }
GetPassword(string username, string answer)170         public override string GetPassword(string username, string answer) { throw null; }
GetUser(object providerUserKey, bool userIsOnline)171         public override System.Web.Security.MembershipUser GetUser(object providerUserKey, bool userIsOnline) { throw null; }
GetUser(string username, bool userIsOnline)172         public override System.Web.Security.MembershipUser GetUser(string username, bool userIsOnline) { throw null; }
GetUserNameByEmail(string email)173         public override string GetUserNameByEmail(string email) { throw null; }
Initialize(string name, System.Collections.Specialized.NameValueCollection config)174         public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { }
Logout()175         public void Logout() { }
ResetPassword(string username, string answer)176         public override string ResetPassword(string username, string answer) { throw null; }
UnlockUser(string username)177         public override bool UnlockUser(string username) { throw null; }
UpdateUser(System.Web.Security.MembershipUser user)178         public override void UpdateUser(System.Web.Security.MembershipUser user) { }
ValidateUser(string username, string password)179         public override bool ValidateUser(string username, string password) { throw null; }
ValidateUser(string username, string password, bool rememberMe)180         public bool ValidateUser(string username, string password, bool rememberMe) { throw null; }
ValidateUser(string username, string password, string serviceUri)181         public static bool ValidateUser(string username, string password, string serviceUri) { throw null; }
182     }
183     public partial class ClientRoleProvider : System.Web.Security.RoleProvider
184     {
ClientRoleProvider()185         public ClientRoleProvider() { }
186         public override string ApplicationName { get { throw null; } set { } }
187         public string ServiceUri { get { throw null; } set { } }
AddUsersToRoles(string[] usernames, string[] roleNames)188         public override void AddUsersToRoles(string[] usernames, string[] roleNames) { }
CreateRole(string roleName)189         public override void CreateRole(string roleName) { }
DeleteRole(string roleName, bool throwOnPopulatedRole)190         public override bool DeleteRole(string roleName, bool throwOnPopulatedRole) { throw null; }
FindUsersInRole(string roleName, string usernameToMatch)191         public override string[] FindUsersInRole(string roleName, string usernameToMatch) { throw null; }
GetAllRoles()192         public override string[] GetAllRoles() { throw null; }
GetRolesForUser(string username)193         public override string[] GetRolesForUser(string username) { throw null; }
GetUsersInRole(string roleName)194         public override string[] GetUsersInRole(string roleName) { throw null; }
Initialize(string name, System.Collections.Specialized.NameValueCollection config)195         public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { }
IsUserInRole(string username, string roleName)196         public override bool IsUserInRole(string username, string roleName) { throw null; }
RemoveUsersFromRoles(string[] usernames, string[] roleNames)197         public override void RemoveUsersFromRoles(string[] usernames, string[] roleNames) { }
ResetCache()198         public void ResetCache() { }
RoleExists(string roleName)199         public override bool RoleExists(string roleName) { throw null; }
200     }
201     public partial class ClientSettingsProvider : System.Configuration.SettingsProvider, System.Configuration.IApplicationSettingsProvider
202     {
ClientSettingsProvider()203         public ClientSettingsProvider() { }
204         public override string ApplicationName { get { throw null; } set { } }
205         public static string ServiceUri { get { throw null; } set { } }
206         public event System.EventHandler<System.Web.ClientServices.Providers.SettingsSavedEventArgs> SettingsSaved { add { } remove { } }
GetPreviousVersion(System.Configuration.SettingsContext context, System.Configuration.SettingsProperty property)207         public System.Configuration.SettingsPropertyValue GetPreviousVersion(System.Configuration.SettingsContext context, System.Configuration.SettingsProperty property) { throw null; }
GetPropertyMetadata(string serviceUri)208         public static System.Configuration.SettingsPropertyCollection GetPropertyMetadata(string serviceUri) { throw null; }
GetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection propertyCollection)209         public override System.Configuration.SettingsPropertyValueCollection GetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection propertyCollection) { throw null; }
Initialize(string name, System.Collections.Specialized.NameValueCollection config)210         public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { }
Reset(System.Configuration.SettingsContext context)211         public void Reset(System.Configuration.SettingsContext context) { }
SetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyValueCollection propertyValueCollection)212         public override void SetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyValueCollection propertyValueCollection) { }
Upgrade(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties)213         public void Upgrade(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties) { }
214     }
215     public partial class ClientWindowsAuthenticationMembershipProvider : System.Web.Security.MembershipProvider
216     {
ClientWindowsAuthenticationMembershipProvider()217         public ClientWindowsAuthenticationMembershipProvider() { }
218         public override string ApplicationName { get { throw null; } set { } }
219         public override bool EnablePasswordReset { get { throw null; } }
220         public override bool EnablePasswordRetrieval { get { throw null; } }
221         public override int MaxInvalidPasswordAttempts { get { throw null; } }
222         public override int MinRequiredNonAlphanumericCharacters { get { throw null; } }
223         public override int MinRequiredPasswordLength { get { throw null; } }
224         public override int PasswordAttemptWindow { get { throw null; } }
225         public override System.Web.Security.MembershipPasswordFormat PasswordFormat { get { throw null; } }
226         public override string PasswordStrengthRegularExpression { get { throw null; } }
227         public override bool RequiresQuestionAndAnswer { get { throw null; } }
228         public override bool RequiresUniqueEmail { get { throw null; } }
ChangePassword(string username, string oldPassword, string newPassword)229         public override bool ChangePassword(string username, string oldPassword, string newPassword) { throw null; }
ChangePasswordQuestionAndAnswer(string username, string password, string newPasswordQuestion, string newPasswordAnswer)230         public override bool ChangePasswordQuestionAndAnswer(string username, string password, string newPasswordQuestion, string newPasswordAnswer) { throw null; }
CreateUser(string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, object providerUserKey, out System.Web.Security.MembershipCreateStatus status)231         public override System.Web.Security.MembershipUser CreateUser(string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, object providerUserKey, out System.Web.Security.MembershipCreateStatus status) { status = default(System.Web.Security.MembershipCreateStatus); throw null; }
DeleteUser(string username, bool deleteAllRelatedData)232         public override bool DeleteUser(string username, bool deleteAllRelatedData) { throw null; }
FindUsersByEmail(string emailToMatch, int pageIndex, int pageSize, out int totalRecords)233         public override System.Web.Security.MembershipUserCollection FindUsersByEmail(string emailToMatch, int pageIndex, int pageSize, out int totalRecords) { totalRecords = default(int); throw null; }
FindUsersByName(string usernameToMatch, int pageIndex, int pageSize, out int totalRecords)234         public override System.Web.Security.MembershipUserCollection FindUsersByName(string usernameToMatch, int pageIndex, int pageSize, out int totalRecords) { totalRecords = default(int); throw null; }
GetAllUsers(int pageIndex, int pageSize, out int totalRecords)235         public override System.Web.Security.MembershipUserCollection GetAllUsers(int pageIndex, int pageSize, out int totalRecords) { totalRecords = default(int); throw null; }
GetNumberOfUsersOnline()236         public override int GetNumberOfUsersOnline() { throw null; }
GetPassword(string username, string answer)237         public override string GetPassword(string username, string answer) { throw null; }
GetUser(object providerUserKey, bool userIsOnline)238         public override System.Web.Security.MembershipUser GetUser(object providerUserKey, bool userIsOnline) { throw null; }
GetUser(string username, bool userIsOnline)239         public override System.Web.Security.MembershipUser GetUser(string username, bool userIsOnline) { throw null; }
GetUserNameByEmail(string email)240         public override string GetUserNameByEmail(string email) { throw null; }
Logout()241         public void Logout() { }
ResetPassword(string username, string answer)242         public override string ResetPassword(string username, string answer) { throw null; }
UnlockUser(string username)243         public override bool UnlockUser(string username) { throw null; }
UpdateUser(System.Web.Security.MembershipUser user)244         public override void UpdateUser(System.Web.Security.MembershipUser user) { }
ValidateUser(string username, string password)245         public override bool ValidateUser(string username, string password) { throw null; }
246     }
247     public partial interface IClientFormsAuthenticationCredentialsProvider
248     {
GetCredentials()249         System.Web.ClientServices.Providers.ClientFormsAuthenticationCredentials GetCredentials();
250     }
251     public partial class SettingsSavedEventArgs : System.EventArgs
252     {
SettingsSavedEventArgs(System.Collections.Generic.IEnumerable<string> failedSettingsList)253         public SettingsSavedEventArgs(System.Collections.Generic.IEnumerable<string> failedSettingsList) { }
254         public System.Collections.ObjectModel.ReadOnlyCollection<string> FailedSettingsList { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
255     }
256     public partial class UserValidatedEventArgs : System.EventArgs
257     {
UserValidatedEventArgs(string username)258         public UserValidatedEventArgs(string username) { }
259         public string UserName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
260     }
261 }
262 namespace System.Web.Compilation
263 {
264     public partial interface IWcfReferenceReceiveContextInformation
265     {
ReceiveImportContextInformation(System.Collections.Generic.IDictionary<string, byte[]> serviceReferenceExtensionFileContents, System.IServiceProvider serviceProvider)266         void ReceiveImportContextInformation(System.Collections.Generic.IDictionary<string, byte[]> serviceReferenceExtensionFileContents, System.IServiceProvider serviceProvider);
267     }
268     public partial class WCFBuildProvider : System.Web.Compilation.BuildProvider
269     {
WCFBuildProvider()270         public WCFBuildProvider() { }
GenerateCode(System.Web.Compilation.AssemblyBuilder assemblyBuilder)271         public override void GenerateCode(System.Web.Compilation.AssemblyBuilder assemblyBuilder) { }
272     }
273 }
274 namespace System.Web.Configuration
275 {
276     public partial class Converter : System.Configuration.ConfigurationElement
277     {
Converter()278         public Converter() { }
279         [System.Configuration.ConfigurationPropertyAttribute("name", IsRequired=true, IsKey=true, DefaultValue="")]
280         [System.Configuration.StringValidatorAttribute(MinLength=1)]
281         public string Name { get { throw null; } set { } }
282         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
283         [System.Configuration.ConfigurationPropertyAttribute("type", IsRequired=true, DefaultValue="")]
284         [System.Configuration.StringValidatorAttribute(MinLength=1)]
285         public string Type { get { throw null; } set { } }
286     }
287     [System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.Converter))]
288     public partial class ConvertersCollection : System.Configuration.ConfigurationElementCollection
289     {
ConvertersCollection()290         public ConvertersCollection() { }
291         public System.Web.Configuration.Converter this[int index] { get { throw null; } set { } }
292         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
Add(System.Web.Configuration.Converter converter)293         public void Add(System.Web.Configuration.Converter converter) { }
Clear()294         public void Clear() { }
CreateNewElement()295         protected override System.Configuration.ConfigurationElement CreateNewElement() { throw null; }
GetElementKey(System.Configuration.ConfigurationElement element)296         protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw null; }
Remove(System.Web.Configuration.Converter converter)297         public void Remove(System.Web.Configuration.Converter converter) { }
298     }
299     public sealed partial class ScriptingAuthenticationServiceSection : System.Configuration.ConfigurationSection
300     {
ScriptingAuthenticationServiceSection()301         public ScriptingAuthenticationServiceSection() { }
302         [System.Configuration.ConfigurationPropertyAttribute("enabled", DefaultValue=false)]
303         public bool Enabled { get { throw null; } set { } }
304         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
305         [System.Configuration.ConfigurationPropertyAttribute("requireSSL", DefaultValue=false)]
306         public bool RequireSSL { get { throw null; } set { } }
307     }
308     public sealed partial class ScriptingJsonSerializationSection : System.Configuration.ConfigurationSection
309     {
ScriptingJsonSerializationSection()310         public ScriptingJsonSerializationSection() { }
311         [System.Configuration.ConfigurationPropertyAttribute("converters", IsKey=true)]
312         public System.Web.Configuration.ConvertersCollection Converters { get { throw null; } }
313         [System.Configuration.ConfigurationPropertyAttribute("maxJsonLength", DefaultValue=2097152)]
314         public int MaxJsonLength { get { throw null; } set { } }
315         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
316         [System.Configuration.ConfigurationPropertyAttribute("recursionLimit", DefaultValue=100)]
317         public int RecursionLimit { get { throw null; } set { } }
318     }
319     public sealed partial class ScriptingProfileServiceSection : System.Configuration.ConfigurationSection
320     {
ScriptingProfileServiceSection()321         public ScriptingProfileServiceSection() { }
322         [System.Configuration.ConfigurationPropertyAttribute("enabled", DefaultValue=false)]
323         public bool Enabled { get { throw null; } set { } }
324         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
325         [System.ComponentModel.TypeConverterAttribute(typeof(System.Web.UI.WebControls.StringArrayConverter))]
326         [System.Configuration.ConfigurationPropertyAttribute("readAccessProperties", DefaultValue=null)]
327         public string[] ReadAccessProperties { get { throw null; } set { } }
328         [System.ComponentModel.TypeConverterAttribute(typeof(System.Web.UI.WebControls.StringArrayConverter))]
329         [System.Configuration.ConfigurationPropertyAttribute("writeAccessProperties", DefaultValue=null)]
330         public string[] WriteAccessProperties { get { throw null; } set { } }
331     }
332     public sealed partial class ScriptingRoleServiceSection : System.Configuration.ConfigurationSection
333     {
ScriptingRoleServiceSection()334         public ScriptingRoleServiceSection() { }
335         [System.Configuration.ConfigurationPropertyAttribute("enabled", DefaultValue=false)]
336         public bool Enabled { get { throw null; } set { } }
337         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
338     }
339     public sealed partial class ScriptingScriptResourceHandlerSection : System.Configuration.ConfigurationSection
340     {
ScriptingScriptResourceHandlerSection()341         public ScriptingScriptResourceHandlerSection() { }
342         [System.Configuration.ConfigurationPropertyAttribute("enableCaching", DefaultValue=true)]
343         public bool EnableCaching { get { throw null; } set { } }
344         [System.Configuration.ConfigurationPropertyAttribute("enableCompression", DefaultValue=true)]
345         public bool EnableCompression { get { throw null; } set { } }
346         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
347     }
348     public sealed partial class ScriptingSectionGroup : System.Configuration.ConfigurationSectionGroup
349     {
ScriptingSectionGroup()350         public ScriptingSectionGroup() { }
351         [System.Configuration.ConfigurationPropertyAttribute("scriptResourceHandler")]
352         public System.Web.Configuration.ScriptingScriptResourceHandlerSection ScriptResourceHandler { get { throw null; } }
353         [System.Configuration.ConfigurationPropertyAttribute("webServices")]
354         public System.Web.Configuration.ScriptingWebServicesSectionGroup WebServices { get { throw null; } }
355     }
356     public sealed partial class ScriptingWebServicesSectionGroup : System.Configuration.ConfigurationSectionGroup
357     {
ScriptingWebServicesSectionGroup()358         public ScriptingWebServicesSectionGroup() { }
359         [System.Configuration.ConfigurationPropertyAttribute("authenticationService")]
360         public System.Web.Configuration.ScriptingAuthenticationServiceSection AuthenticationService { get { throw null; } }
361         [System.Configuration.ConfigurationPropertyAttribute("jsonSerialization")]
362         public System.Web.Configuration.ScriptingJsonSerializationSection JsonSerialization { get { throw null; } }
363         [System.Configuration.ConfigurationPropertyAttribute("profileService")]
364         public System.Web.Configuration.ScriptingProfileServiceSection ProfileService { get { throw null; } }
365         public System.Web.Configuration.ScriptingRoleServiceSection RoleService { get { throw null; } }
366     }
367     public sealed partial class SystemWebExtensionsSectionGroup : System.Configuration.ConfigurationSectionGroup
368     {
SystemWebExtensionsSectionGroup()369         public SystemWebExtensionsSectionGroup() { }
370         [System.Configuration.ConfigurationPropertyAttribute("scripting")]
371         public System.Web.Configuration.ScriptingSectionGroup Scripting { get { throw null; } }
372     }
373 }
374 namespace System.Web.DynamicData
375 {
376     public enum DynamicDataSourceOperation
377     {
378         ContextCreate = 4,
379         Delete = 0,
380         Insert = 1,
381         Select = 2,
382         Update = 3,
383     }
384     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
385     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
386     public partial class DynamicValidatorEventArgs : System.EventArgs
387     {
DynamicValidatorEventArgs(System.Exception exception, System.Web.DynamicData.DynamicDataSourceOperation operation)388         public DynamicValidatorEventArgs(System.Exception exception, System.Web.DynamicData.DynamicDataSourceOperation operation) { }
389         public System.Exception Exception { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
390         public System.Web.DynamicData.DynamicDataSourceOperation Operation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
391     }
392     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
393     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
394     public partial interface IDynamicDataSource : System.Web.UI.IDataSource
395     {
396         bool AutoGenerateWhereClause { get; set; }
397         System.Type ContextType { get; set; }
398         bool EnableDelete { get; set; }
399         bool EnableInsert { get; set; }
400         bool EnableUpdate { get; set; }
401         string EntitySetName { get; set; }
402         string Where { get; set; }
403         System.Web.UI.WebControls.ParameterCollection WhereParameters { get; }
404         event System.EventHandler<System.Web.DynamicData.DynamicValidatorEventArgs> Exception;
405     }
406     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
407     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
408     public partial interface IDynamicValidatorException
409     {
410         System.Collections.Generic.IDictionary<string, System.Exception> InnerExceptions { get; }
411     }
412 }
413 namespace System.Web.Handlers
414 {
415     public partial class ScriptModule : System.Web.IHttpModule
416     {
ScriptModule()417         public ScriptModule() { }
Dispose()418         protected virtual void Dispose() { }
Init(System.Web.HttpApplication app)419         protected virtual void Init(System.Web.HttpApplication app) { }
System.Web.IHttpModule.Dispose()420         void System.Web.IHttpModule.Dispose() { }
System.Web.IHttpModule.Init(System.Web.HttpApplication context)421         void System.Web.IHttpModule.Init(System.Web.HttpApplication context) { }
422     }
423     public partial class ScriptResourceHandler : System.Web.IHttpHandler
424     {
ScriptResourceHandler()425         public ScriptResourceHandler() { }
426         protected virtual bool IsReusable { get { throw null; } }
427         bool System.Web.IHttpHandler.IsReusable { get { throw null; } }
ProcessRequest(System.Web.HttpContext context)428         protected virtual void ProcessRequest(System.Web.HttpContext context) { }
System.Web.IHttpHandler.ProcessRequest(System.Web.HttpContext context)429         void System.Web.IHttpHandler.ProcessRequest(System.Web.HttpContext context) { }
430     }
431 }
432 namespace System.Web.Management
433 {
434     public partial class WebServiceErrorEvent : System.Web.Management.WebRequestErrorEvent
435     {
WebServiceErrorEvent(string message, object eventSource, System.Exception exception)436         protected internal WebServiceErrorEvent(string message, object eventSource, System.Exception exception) : base (default(string), default(object), default(int), default(System.Exception)) { }
437         public static int WebServiceErrorEventCode { get { throw null; } }
438     }
439 }
440 namespace System.Web.Query.Dynamic
441 {
442     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
443     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
444     public abstract partial class DynamicClass
445     {
DynamicClass()446         protected DynamicClass() { }
ToString()447         public override string ToString() { throw null; }
448     }
449     public partial class ParseException : System.Exception
450     {
ParseException(string message, int position)451         public ParseException(string message, int position) { }
452         public int Position { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
ToString()453         public override string ToString() { throw null; }
454     }
455 }
456 namespace System.Web.Script
457 {
458     public partial class AjaxFrameworkAssemblyAttribute : System.Attribute
459     {
AjaxFrameworkAssemblyAttribute()460         public AjaxFrameworkAssemblyAttribute() { }
GetDefaultAjaxFrameworkAssembly(System.Reflection.Assembly currentAssembly)461         protected internal virtual System.Reflection.Assembly GetDefaultAjaxFrameworkAssembly(System.Reflection.Assembly currentAssembly) { throw null; }
462     }
463 }
464 namespace System.Web.Script.Serialization
465 {
466     public abstract partial class JavaScriptConverter
467     {
JavaScriptConverter()468         protected JavaScriptConverter() { }
469         public abstract System.Collections.Generic.IEnumerable<System.Type> SupportedTypes { get; }
Deserialize(System.Collections.Generic.IDictionary<string, object> dictionary, System.Type type, System.Web.Script.Serialization.JavaScriptSerializer serializer)470         public abstract object Deserialize(System.Collections.Generic.IDictionary<string, object> dictionary, System.Type type, System.Web.Script.Serialization.JavaScriptSerializer serializer);
Serialize(object obj, System.Web.Script.Serialization.JavaScriptSerializer serializer)471         public abstract System.Collections.Generic.IDictionary<string, object> Serialize(object obj, System.Web.Script.Serialization.JavaScriptSerializer serializer);
472     }
473     public partial class JavaScriptSerializer
474     {
JavaScriptSerializer()475         public JavaScriptSerializer() { }
JavaScriptSerializer(System.Web.Script.Serialization.JavaScriptTypeResolver resolver)476         public JavaScriptSerializer(System.Web.Script.Serialization.JavaScriptTypeResolver resolver) { }
477         public int MaxJsonLength { get { throw null; } set { } }
478         public int RecursionLimit { get { throw null; } set { } }
ConvertToType(object obj, System.Type targetType)479         public object ConvertToType(object obj, System.Type targetType) { throw null; }
ConvertToType(object obj)480         public T ConvertToType<T>(object obj) { throw null; }
Deserialize(string input, System.Type targetType)481         public object Deserialize(string input, System.Type targetType) { throw null; }
DeserializeObject(string input)482         public object DeserializeObject(string input) { throw null; }
Deserialize(string input)483         public T Deserialize<T>(string input) { throw null; }
RegisterConverters(System.Collections.Generic.IEnumerable<System.Web.Script.Serialization.JavaScriptConverter> converters)484         public void RegisterConverters(System.Collections.Generic.IEnumerable<System.Web.Script.Serialization.JavaScriptConverter> converters) { }
Serialize(object obj)485         public string Serialize(object obj) { throw null; }
Serialize(object obj, System.Text.StringBuilder output)486         public void Serialize(object obj, System.Text.StringBuilder output) { }
487     }
488     public abstract partial class JavaScriptTypeResolver
489     {
JavaScriptTypeResolver()490         protected JavaScriptTypeResolver() { }
ResolveType(string id)491         public abstract System.Type ResolveType(string id);
ResolveTypeId(System.Type type)492         public abstract string ResolveTypeId(System.Type type);
493     }
494     [System.AttributeUsageAttribute((System.AttributeTargets)(384))]
495     public sealed partial class ScriptIgnoreAttribute : System.Attribute
496     {
ScriptIgnoreAttribute()497         public ScriptIgnoreAttribute() { }
498         public bool ApplyToOverrides { get { throw null; } set { } }
499     }
500     public partial class SimpleTypeResolver : System.Web.Script.Serialization.JavaScriptTypeResolver
501     {
SimpleTypeResolver()502         public SimpleTypeResolver() { }
ResolveType(string id)503         public override System.Type ResolveType(string id) { throw null; }
ResolveTypeId(System.Type type)504         public override string ResolveTypeId(System.Type type) { throw null; }
505     }
506 }
507 namespace System.Web.Script.Services
508 {
509     [System.AttributeUsageAttribute((System.AttributeTargets)(1092), AllowMultiple=true)]
510     public sealed partial class GenerateScriptTypeAttribute : System.Attribute
511     {
GenerateScriptTypeAttribute(System.Type type)512         public GenerateScriptTypeAttribute(System.Type type) { }
513         public string ScriptTypeId { get { throw null; } set { } }
514         public System.Type Type { get { throw null; } }
515     }
516     public static partial class ProxyGenerator
517     {
GetClientProxyScript(System.Type type, string path, bool debug)518         public static string GetClientProxyScript(System.Type type, string path, bool debug) { throw null; }
GetClientProxyScript(System.Type type, string path, bool debug, System.ServiceModel.Description.ServiceEndpoint serviceEndpoint)519         public static string GetClientProxyScript(System.Type type, string path, bool debug, System.ServiceModel.Description.ServiceEndpoint serviceEndpoint) { throw null; }
520     }
521     public enum ResponseFormat
522     {
523         Json = 0,
524         Xml = 1,
525     }
526     [System.AttributeUsageAttribute((System.AttributeTargets)(64))]
527     public sealed partial class ScriptMethodAttribute : System.Attribute
528     {
ScriptMethodAttribute()529         public ScriptMethodAttribute() { }
530         public System.Web.Script.Services.ResponseFormat ResponseFormat { get { throw null; } set { } }
531         public bool UseHttpGet { get { throw null; } set { } }
532         public bool XmlSerializeString { get { throw null; } set { } }
533     }
534     [System.AttributeUsageAttribute((System.AttributeTargets)(1028))]
535     public sealed partial class ScriptServiceAttribute : System.Attribute
536     {
ScriptServiceAttribute()537         public ScriptServiceAttribute() { }
538     }
539 }
540 namespace System.Web.UI
541 {
542     public enum AjaxFrameworkMode
543     {
544         Disabled = 1,
545         Enabled = 0,
546         Explicit = 2,
547     }
548     public partial class AsyncPostBackErrorEventArgs : System.EventArgs
549     {
AsyncPostBackErrorEventArgs(System.Exception exception)550         public AsyncPostBackErrorEventArgs(System.Exception exception) { }
551         public System.Exception Exception { get { throw null; } }
552     }
553     public partial class AsyncPostBackTrigger : System.Web.UI.UpdatePanelControlTrigger
554     {
AsyncPostBackTrigger()555         public AsyncPostBackTrigger() { }
556         public new string ControlID { get { throw null; } set { } }
557         [System.ComponentModel.CategoryAttribute("Behavior")]
558         [System.ComponentModel.DefaultValueAttribute("")]
559         public string EventName { get { throw null; } set { } }
HasTriggered()560         protected internal override bool HasTriggered() { throw null; }
Initialize()561         protected internal override void Initialize() { }
OnEvent(object sender, System.EventArgs e)562         public void OnEvent(object sender, System.EventArgs e) { }
ToString()563         public override string ToString() { throw null; }
564     }
565     [System.ComponentModel.DefaultPropertyAttribute("Path")]
566     public partial class AuthenticationServiceManager
567     {
AuthenticationServiceManager()568         public AuthenticationServiceManager() { }
569         [System.ComponentModel.CategoryAttribute("Behavior")]
570         [System.ComponentModel.DefaultValueAttribute("")]
571         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
572         public string Path { get { throw null; } set { } }
573     }
574     [System.ComponentModel.DefaultPropertyAttribute("Path")]
575     public partial class CompositeScriptReference : System.Web.UI.ScriptReferenceBase
576     {
CompositeScriptReference()577         public CompositeScriptReference() { }
578         [System.ComponentModel.CategoryAttribute("Behavior")]
579         [System.ComponentModel.DefaultValueAttribute(null)]
580         [System.ComponentModel.EditorAttribute("System.Web.UI.Design.CollectionEditorBase, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
581         [System.ComponentModel.MergablePropertyAttribute(false)]
582         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
583         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
584         public System.Web.UI.ScriptReferenceCollection Scripts { get { throw null; } }
GetUrl(System.Web.UI.ScriptManager scriptManager, bool zip)585         protected internal override string GetUrl(System.Web.UI.ScriptManager scriptManager, bool zip) { throw null; }
IsAjaxFrameworkScript(System.Web.UI.ScriptManager scriptManager)586         protected internal override bool IsAjaxFrameworkScript(System.Web.UI.ScriptManager scriptManager) { throw null; }
587         [System.ObsoleteAttribute("Use IsAjaxFrameworkScript(ScriptManager)")]
IsFromSystemWebExtensions()588         protected internal override bool IsFromSystemWebExtensions() { throw null; }
589     }
590     public partial class CompositeScriptReferenceEventArgs : System.EventArgs
591     {
CompositeScriptReferenceEventArgs(System.Web.UI.CompositeScriptReference compositeScript)592         public CompositeScriptReferenceEventArgs(System.Web.UI.CompositeScriptReference compositeScript) { }
593         public System.Web.UI.CompositeScriptReference CompositeScript { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
594     }
595     [System.ComponentModel.DefaultPropertyAttribute("TargetControlID")]
596     [System.Web.UI.NonVisualControlAttribute]
597     [System.Web.UI.ParseChildrenAttribute(true)]
598     [System.Web.UI.PersistChildrenAttribute(false)]
599     public abstract partial class ExtenderControl : System.Web.UI.Control, System.Web.UI.IExtenderControl
600     {
ExtenderControl()601         protected ExtenderControl() { }
602         [System.ComponentModel.CategoryAttribute("Behavior")]
603         [System.ComponentModel.DefaultValueAttribute("")]
604         [System.Web.UI.IDReferencePropertyAttribute]
605         public string TargetControlID { get { throw null; } set { } }
606         [System.ComponentModel.BrowsableAttribute(false)]
607         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
608         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
609         public override bool Visible { get { throw null; } set { } }
GetScriptDescriptors(System.Web.UI.Control targetControl)610         protected abstract System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> GetScriptDescriptors(System.Web.UI.Control targetControl);
GetScriptReferences()611         protected abstract System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> GetScriptReferences();
OnPreRender(System.EventArgs e)612         protected internal override void OnPreRender(System.EventArgs e) { }
Render(System.Web.UI.HtmlTextWriter writer)613         protected internal override void Render(System.Web.UI.HtmlTextWriter writer) { }
System.Web.UI.IExtenderControl.GetScriptDescriptors(System.Web.UI.Control targetControl)614         System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> System.Web.UI.IExtenderControl.GetScriptDescriptors(System.Web.UI.Control targetControl) { throw null; }
System.Web.UI.IExtenderControl.GetScriptReferences()615         System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> System.Web.UI.IExtenderControl.GetScriptReferences() { throw null; }
616     }
617     public partial class HistoryEventArgs : System.EventArgs
618     {
HistoryEventArgs(System.Collections.Specialized.NameValueCollection state)619         public HistoryEventArgs(System.Collections.Specialized.NameValueCollection state) { }
620         public System.Collections.Specialized.NameValueCollection State { get { throw null; } }
621     }
622     public partial interface IExtenderControl
623     {
GetScriptDescriptors(System.Web.UI.Control targetControl)624         System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> GetScriptDescriptors(System.Web.UI.Control targetControl);
GetScriptReferences()625         System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> GetScriptReferences();
626     }
627     public partial interface IScriptControl
628     {
GetScriptDescriptors()629         System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> GetScriptDescriptors();
GetScriptReferences()630         System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> GetScriptReferences();
631     }
632     public partial class PostBackTrigger : System.Web.UI.UpdatePanelControlTrigger
633     {
PostBackTrigger()634         public PostBackTrigger() { }
635         public new string ControlID { get { throw null; } set { } }
HasTriggered()636         protected internal override bool HasTriggered() { throw null; }
Initialize()637         protected internal override void Initialize() { }
ToString()638         public override string ToString() { throw null; }
639     }
640     [System.ComponentModel.DefaultPropertyAttribute("Path")]
641     public partial class ProfileServiceManager
642     {
ProfileServiceManager()643         public ProfileServiceManager() { }
644         [System.ComponentModel.CategoryAttribute("Behavior")]
645         [System.ComponentModel.DefaultValueAttribute("")]
646         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
647         [System.ComponentModel.TypeConverterAttribute(typeof(System.Web.UI.WebControls.StringArrayConverter))]
648         public string[] LoadProperties { get { throw null; } set { } }
649         [System.ComponentModel.CategoryAttribute("Behavior")]
650         [System.ComponentModel.DefaultValueAttribute("")]
651         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
652         public string Path { get { throw null; } set { } }
653     }
654     public sealed partial class RegisteredArrayDeclaration
655     {
RegisteredArrayDeclaration()656         internal RegisteredArrayDeclaration() { }
657         public System.Web.UI.Control Control { get { throw null; } }
658         public string Name { get { throw null; } }
659         public string Value { get { throw null; } }
660     }
661     public sealed partial class RegisteredDisposeScript
662     {
RegisteredDisposeScript()663         internal RegisteredDisposeScript() { }
664         public System.Web.UI.Control Control { get { throw null; } }
665         public string Script { get { throw null; } }
666     }
667     public sealed partial class RegisteredExpandoAttribute
668     {
RegisteredExpandoAttribute()669         internal RegisteredExpandoAttribute() { }
670         public System.Web.UI.Control Control { get { throw null; } }
671         public string ControlId { get { throw null; } }
672         public bool Encode { get { throw null; } }
673         public string Name { get { throw null; } }
674         public string Value { get { throw null; } }
675     }
676     public sealed partial class RegisteredHiddenField
677     {
RegisteredHiddenField()678         internal RegisteredHiddenField() { }
679         public System.Web.UI.Control Control { get { throw null; } }
680         public string InitialValue { get { throw null; } }
681         public string Name { get { throw null; } }
682     }
683     public sealed partial class RegisteredScript
684     {
RegisteredScript()685         internal RegisteredScript() { }
686         public bool AddScriptTags { get { throw null; } }
687         public System.Web.UI.Control Control { get { throw null; } }
688         public string Key { get { throw null; } }
689         public string Script { get { throw null; } }
690         public System.Web.UI.RegisteredScriptType ScriptType { get { throw null; } }
691         public System.Type Type { get { throw null; } }
692         public string Url { get { throw null; } }
693     }
694     public enum RegisteredScriptType
695     {
696         ClientScriptBlock = 1,
697         ClientScriptInclude = 0,
698         ClientStartupScript = 2,
699         OnSubmitStatement = 3,
700     }
701     public partial class RoleServiceManager
702     {
RoleServiceManager()703         public RoleServiceManager() { }
704         public bool LoadRoles { get { throw null; } set { } }
705         public string Path { get { throw null; } set { } }
706     }
707     public partial class ScriptBehaviorDescriptor : System.Web.UI.ScriptComponentDescriptor
708     {
ScriptBehaviorDescriptor(string type, string elementID)709         public ScriptBehaviorDescriptor(string type, string elementID) : base (default(string)) { }
710         public override string ClientID { get { throw null; } }
711         public string ElementID { get { throw null; } }
712         public string Name { get { throw null; } set { } }
GetScript()713         protected internal override string GetScript() { throw null; }
714     }
715     public partial class ScriptComponentDescriptor : System.Web.UI.ScriptDescriptor
716     {
ScriptComponentDescriptor(string type)717         public ScriptComponentDescriptor(string type) { }
718         public virtual string ClientID { get { throw null; } }
719         public virtual string ID { get { throw null; } set { } }
720         public string Type { get { throw null; } set { } }
AddComponentProperty(string name, string componentID)721         public void AddComponentProperty(string name, string componentID) { }
AddElementProperty(string name, string elementID)722         public void AddElementProperty(string name, string elementID) { }
AddEvent(string name, string handler)723         public void AddEvent(string name, string handler) { }
AddProperty(string name, object value)724         public void AddProperty(string name, object value) { }
AddScriptProperty(string name, string script)725         public void AddScriptProperty(string name, string script) { }
GetScript()726         protected internal override string GetScript() { throw null; }
727     }
728     public abstract partial class ScriptControl : System.Web.UI.WebControls.WebControl, System.Web.UI.IScriptControl
729     {
ScriptControl()730         protected ScriptControl() { }
GetScriptDescriptors()731         protected abstract System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> GetScriptDescriptors();
GetScriptReferences()732         protected abstract System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> GetScriptReferences();
OnPreRender(System.EventArgs e)733         protected internal override void OnPreRender(System.EventArgs e) { }
Render(System.Web.UI.HtmlTextWriter writer)734         protected internal override void Render(System.Web.UI.HtmlTextWriter writer) { }
System.Web.UI.IScriptControl.GetScriptDescriptors()735         System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> System.Web.UI.IScriptControl.GetScriptDescriptors() { throw null; }
System.Web.UI.IScriptControl.GetScriptReferences()736         System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> System.Web.UI.IScriptControl.GetScriptReferences() { throw null; }
737     }
738     public partial class ScriptControlDescriptor : System.Web.UI.ScriptComponentDescriptor
739     {
ScriptControlDescriptor(string type, string elementID)740         public ScriptControlDescriptor(string type, string elementID) : base (default(string)) { }
741         public override string ClientID { get { throw null; } }
742         public string ElementID { get { throw null; } }
743         public override string ID { get { throw null; } set { } }
744     }
745     public abstract partial class ScriptDescriptor
746     {
ScriptDescriptor()747         protected ScriptDescriptor() { }
GetScript()748         protected internal abstract string GetScript();
749     }
750     [System.ComponentModel.DefaultPropertyAttribute("Scripts")]
751     [System.ComponentModel.DesignerAttribute("System.Web.UI.Design.ScriptManagerDesigner, System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
752     [System.Web.UI.NonVisualControlAttribute]
753     [System.Web.UI.ParseChildrenAttribute(true)]
754     [System.Web.UI.PersistChildrenAttribute(false)]
755     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
756     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
757     public partial class ScriptManager : System.Web.UI.Control, System.Web.UI.IPostBackDataHandler, System.Web.UI.IPostBackEventHandler
758     {
ScriptManager()759         public ScriptManager() { }
760         public virtual System.Reflection.Assembly AjaxFrameworkAssembly { get { throw null; } }
761         public System.Web.UI.AjaxFrameworkMode AjaxFrameworkMode { get { throw null; } set { } }
762         [System.ComponentModel.CategoryAttribute("Behavior")]
763         [System.ComponentModel.DefaultValueAttribute(true)]
764         public bool AllowCustomErrorsRedirect { get { throw null; } set { } }
765         [System.ComponentModel.CategoryAttribute("Behavior")]
766         [System.ComponentModel.DefaultValueAttribute("")]
767         public string AsyncPostBackErrorMessage { get { throw null; } set { } }
768         [System.ComponentModel.BrowsableAttribute(false)]
769         public string AsyncPostBackSourceElementID { get { throw null; } }
770         [System.ComponentModel.CategoryAttribute("Behavior")]
771         [System.ComponentModel.DefaultValueAttribute(90)]
772         public int AsyncPostBackTimeout { get { throw null; } set { } }
773         [System.ComponentModel.CategoryAttribute("Behavior")]
774         [System.ComponentModel.DefaultValueAttribute("")]
775         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
776         [System.ComponentModel.MergablePropertyAttribute(false)]
777         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
778         public System.Web.UI.AuthenticationServiceManager AuthenticationService { get { throw null; } }
779         public string ClientNavigateHandler { get { throw null; } set { } }
780         [System.ComponentModel.CategoryAttribute("Behavior")]
781         [System.ComponentModel.DefaultValueAttribute(null)]
782         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
783         [System.ComponentModel.MergablePropertyAttribute(false)]
784         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
785         public System.Web.UI.CompositeScriptReference CompositeScript { get { throw null; } }
786         public virtual string EmptyPageUrl { get { throw null; } set { } }
787         public bool EnableCdn { get { throw null; } set { } }
788         public bool EnableCdnFallback { get { throw null; } set { } }
789         public bool EnableHistory { get { throw null; } set { } }
790         [System.ComponentModel.CategoryAttribute("Behavior")]
791         [System.ComponentModel.DefaultValueAttribute(false)]
792         public bool EnablePageMethods { get { throw null; } set { } }
793         [System.ComponentModel.CategoryAttribute("Behavior")]
794         [System.ComponentModel.DefaultValueAttribute(true)]
795         public bool EnablePartialRendering { get { throw null; } set { } }
796         [System.ComponentModel.CategoryAttribute("Behavior")]
797         [System.ComponentModel.DefaultValueAttribute(false)]
798         public bool EnableScriptGlobalization { get { throw null; } set { } }
799         [System.ComponentModel.CategoryAttribute("Behavior")]
800         [System.ComponentModel.DefaultValueAttribute(false)]
801         public bool EnableScriptLocalization { get { throw null; } set { } }
802         public bool EnableSecureHistoryState { get { throw null; } set { } }
803         [System.ComponentModel.BrowsableAttribute(false)]
804         public bool IsDebuggingEnabled { get { throw null; } }
805         [System.ComponentModel.BrowsableAttribute(false)]
806         public bool IsInAsyncPostBack { get { throw null; } }
807         public bool IsNavigating { get { throw null; } }
808         [System.ComponentModel.CategoryAttribute("Behavior")]
809         [System.ComponentModel.DefaultValueAttribute(true)]
810         public bool LoadScriptsBeforeUI { get { throw null; } set { } }
811         [System.ComponentModel.CategoryAttribute("Behavior")]
812         [System.ComponentModel.DefaultValueAttribute("")]
813         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
814         [System.ComponentModel.MergablePropertyAttribute(false)]
815         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
816         public System.Web.UI.ProfileServiceManager ProfileService { get { throw null; } }
817         public System.Web.UI.RoleServiceManager RoleService { get { throw null; } }
818         [System.ComponentModel.CategoryAttribute("Behavior")]
819         public System.Web.UI.ScriptMode ScriptMode { get { throw null; } set { } }
820         [System.ComponentModel.CategoryAttribute("Behavior")]
821         [System.ComponentModel.DefaultValueAttribute("")]
822         public string ScriptPath { get { throw null; } set { } }
823         public static System.Web.UI.ScriptResourceMapping ScriptResourceMapping { get { throw null; } }
824         [System.ComponentModel.CategoryAttribute("Behavior")]
825         [System.ComponentModel.DefaultValueAttribute("")]
826         [System.ComponentModel.MergablePropertyAttribute(false)]
827         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
828         public System.Web.UI.ScriptReferenceCollection Scripts { get { throw null; } }
829         [System.ComponentModel.CategoryAttribute("Behavior")]
830         [System.ComponentModel.DefaultValueAttribute("")]
831         [System.ComponentModel.MergablePropertyAttribute(false)]
832         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
833         public System.Web.UI.ServiceReferenceCollection Services { get { throw null; } }
834         [System.ComponentModel.BrowsableAttribute(false)]
835         [System.ComponentModel.DefaultValueAttribute(true)]
836         public bool SupportsPartialRendering { get { throw null; } set { } }
837         [System.ComponentModel.BrowsableAttribute(false)]
838         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
839         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
840         public override bool Visible { get { throw null; } set { } }
841         [System.ComponentModel.CategoryAttribute("Action")]
842         public event System.EventHandler<System.Web.UI.AsyncPostBackErrorEventArgs> AsyncPostBackError { add { } remove { } }
843         public event System.EventHandler<System.Web.UI.HistoryEventArgs> Navigate { add { } remove { } }
844         [System.ComponentModel.CategoryAttribute("Action")]
845         public event System.EventHandler<System.Web.UI.CompositeScriptReferenceEventArgs> ResolveCompositeScriptReference { add { } remove { } }
846         [System.ComponentModel.CategoryAttribute("Action")]
847         public event System.EventHandler<System.Web.UI.ScriptReferenceEventArgs> ResolveScriptReference { add { } remove { } }
AddHistoryPoint(System.Collections.Specialized.NameValueCollection state, string title)848         public void AddHistoryPoint(System.Collections.Specialized.NameValueCollection state, string title) { }
AddHistoryPoint(string key, string value)849         public void AddHistoryPoint(string key, string value) { }
AddHistoryPoint(string key, string value, string title)850         public void AddHistoryPoint(string key, string value, string title) { }
GetCurrent(System.Web.UI.Page page)851         public static System.Web.UI.ScriptManager GetCurrent(System.Web.UI.Page page) { throw null; }
GetRegisteredArrayDeclarations()852         public System.Collections.ObjectModel.ReadOnlyCollection<System.Web.UI.RegisteredArrayDeclaration> GetRegisteredArrayDeclarations() { throw null; }
GetRegisteredClientScriptBlocks()853         public System.Collections.ObjectModel.ReadOnlyCollection<System.Web.UI.RegisteredScript> GetRegisteredClientScriptBlocks() { throw null; }
GetRegisteredDisposeScripts()854         public System.Collections.ObjectModel.ReadOnlyCollection<System.Web.UI.RegisteredDisposeScript> GetRegisteredDisposeScripts() { throw null; }
GetRegisteredExpandoAttributes()855         public System.Collections.ObjectModel.ReadOnlyCollection<System.Web.UI.RegisteredExpandoAttribute> GetRegisteredExpandoAttributes() { throw null; }
GetRegisteredHiddenFields()856         public System.Collections.ObjectModel.ReadOnlyCollection<System.Web.UI.RegisteredHiddenField> GetRegisteredHiddenFields() { throw null; }
GetRegisteredOnSubmitStatements()857         public System.Collections.ObjectModel.ReadOnlyCollection<System.Web.UI.RegisteredScript> GetRegisteredOnSubmitStatements() { throw null; }
GetRegisteredStartupScripts()858         public System.Collections.ObjectModel.ReadOnlyCollection<System.Web.UI.RegisteredScript> GetRegisteredStartupScripts() { throw null; }
GetStateString()859         public string GetStateString() { throw null; }
LoadPostData(string postDataKey, System.Collections.Specialized.NameValueCollection postCollection)860         protected virtual bool LoadPostData(string postDataKey, System.Collections.Specialized.NameValueCollection postCollection) { throw null; }
OnAsyncPostBackError(System.Web.UI.AsyncPostBackErrorEventArgs e)861         protected internal virtual void OnAsyncPostBackError(System.Web.UI.AsyncPostBackErrorEventArgs e) { }
OnInit(System.EventArgs e)862         protected internal override void OnInit(System.EventArgs e) { }
OnPreRender(System.EventArgs e)863         protected internal override void OnPreRender(System.EventArgs e) { }
OnResolveCompositeScriptReference(System.Web.UI.CompositeScriptReferenceEventArgs e)864         protected virtual void OnResolveCompositeScriptReference(System.Web.UI.CompositeScriptReferenceEventArgs e) { }
OnResolveScriptReference(System.Web.UI.ScriptReferenceEventArgs e)865         protected virtual void OnResolveScriptReference(System.Web.UI.ScriptReferenceEventArgs e) { }
RaisePostBackEvent(string eventArgument)866         protected virtual void RaisePostBackEvent(string eventArgument) { }
RaisePostDataChangedEvent()867         protected virtual void RaisePostDataChangedEvent() { }
RegisterArrayDeclaration(System.Web.UI.Control control, string arrayName, string arrayValue)868         public static void RegisterArrayDeclaration(System.Web.UI.Control control, string arrayName, string arrayValue) { }
RegisterArrayDeclaration(System.Web.UI.Page page, string arrayName, string arrayValue)869         public static void RegisterArrayDeclaration(System.Web.UI.Page page, string arrayName, string arrayValue) { }
RegisterAsyncPostBackControl(System.Web.UI.Control control)870         public void RegisterAsyncPostBackControl(System.Web.UI.Control control) { }
RegisterClientScriptBlock(System.Web.UI.Control control, System.Type type, string key, string script, bool addScriptTags)871         public static void RegisterClientScriptBlock(System.Web.UI.Control control, System.Type type, string key, string script, bool addScriptTags) { }
RegisterClientScriptBlock(System.Web.UI.Page page, System.Type type, string key, string script, bool addScriptTags)872         public static void RegisterClientScriptBlock(System.Web.UI.Page page, System.Type type, string key, string script, bool addScriptTags) { }
RegisterClientScriptInclude(System.Web.UI.Control control, System.Type type, string key, string url)873         public static void RegisterClientScriptInclude(System.Web.UI.Control control, System.Type type, string key, string url) { }
RegisterClientScriptInclude(System.Web.UI.Page page, System.Type type, string key, string url)874         public static void RegisterClientScriptInclude(System.Web.UI.Page page, System.Type type, string key, string url) { }
RegisterClientScriptResource(System.Web.UI.Control control, System.Type type, string resourceName)875         public static void RegisterClientScriptResource(System.Web.UI.Control control, System.Type type, string resourceName) { }
RegisterClientScriptResource(System.Web.UI.Page page, System.Type type, string resourceName)876         public static void RegisterClientScriptResource(System.Web.UI.Page page, System.Type type, string resourceName) { }
RegisterDataItem(System.Web.UI.Control control, string dataItem)877         public void RegisterDataItem(System.Web.UI.Control control, string dataItem) { }
RegisterDataItem(System.Web.UI.Control control, string dataItem, bool isJsonSerialized)878         public void RegisterDataItem(System.Web.UI.Control control, string dataItem, bool isJsonSerialized) { }
RegisterDispose(System.Web.UI.Control control, string disposeScript)879         public void RegisterDispose(System.Web.UI.Control control, string disposeScript) { }
RegisterExpandoAttribute(System.Web.UI.Control control, string controlId, string attributeName, string attributeValue, bool encode)880         public static void RegisterExpandoAttribute(System.Web.UI.Control control, string controlId, string attributeName, string attributeValue, bool encode) { }
881         public void RegisterExtenderControl<TExtenderControl>(TExtenderControl extenderControl, System.Web.UI.Control targetControl) where TExtenderControl : System.Web.UI.Control, System.Web.UI.IExtenderControl { }
RegisterHiddenField(System.Web.UI.Control control, string hiddenFieldName, string hiddenFieldInitialValue)882         public static void RegisterHiddenField(System.Web.UI.Control control, string hiddenFieldName, string hiddenFieldInitialValue) { }
RegisterHiddenField(System.Web.UI.Page page, string hiddenFieldName, string hiddenFieldInitialValue)883         public static void RegisterHiddenField(System.Web.UI.Page page, string hiddenFieldName, string hiddenFieldInitialValue) { }
RegisterNamedClientScriptResource(System.Web.UI.Control control, string resourceName)884         public static void RegisterNamedClientScriptResource(System.Web.UI.Control control, string resourceName) { }
RegisterNamedClientScriptResource(System.Web.UI.Page page, string resourceName)885         public static void RegisterNamedClientScriptResource(System.Web.UI.Page page, string resourceName) { }
RegisterOnSubmitStatement(System.Web.UI.Control control, System.Type type, string key, string script)886         public static void RegisterOnSubmitStatement(System.Web.UI.Control control, System.Type type, string key, string script) { }
RegisterOnSubmitStatement(System.Web.UI.Page page, System.Type type, string key, string script)887         public static void RegisterOnSubmitStatement(System.Web.UI.Page page, System.Type type, string key, string script) { }
RegisterPostBackControl(System.Web.UI.Control control)888         public void RegisterPostBackControl(System.Web.UI.Control control) { }
889         public void RegisterScriptControl<TScriptControl>(TScriptControl scriptControl) where TScriptControl : System.Web.UI.Control, System.Web.UI.IScriptControl { }
RegisterScriptDescriptors(System.Web.UI.IExtenderControl extenderControl)890         public void RegisterScriptDescriptors(System.Web.UI.IExtenderControl extenderControl) { }
RegisterScriptDescriptors(System.Web.UI.IScriptControl scriptControl)891         public void RegisterScriptDescriptors(System.Web.UI.IScriptControl scriptControl) { }
RegisterStartupScript(System.Web.UI.Control control, System.Type type, string key, string script, bool addScriptTags)892         public static void RegisterStartupScript(System.Web.UI.Control control, System.Type type, string key, string script, bool addScriptTags) { }
RegisterStartupScript(System.Web.UI.Page page, System.Type type, string key, string script, bool addScriptTags)893         public static void RegisterStartupScript(System.Web.UI.Page page, System.Type type, string key, string script, bool addScriptTags) { }
Render(System.Web.UI.HtmlTextWriter writer)894         protected internal override void Render(System.Web.UI.HtmlTextWriter writer) { }
SetFocus(string clientID)895         public void SetFocus(string clientID) { }
SetFocus(System.Web.UI.Control control)896         public void SetFocus(System.Web.UI.Control control) { }
System.Web.UI.IPostBackDataHandler.LoadPostData(string postDataKey, System.Collections.Specialized.NameValueCollection postCollection)897         bool System.Web.UI.IPostBackDataHandler.LoadPostData(string postDataKey, System.Collections.Specialized.NameValueCollection postCollection) { throw null; }
System.Web.UI.IPostBackDataHandler.RaisePostDataChangedEvent()898         void System.Web.UI.IPostBackDataHandler.RaisePostDataChangedEvent() { }
System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(string eventArgument)899         void System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(string eventArgument) { }
900     }
901     [System.ComponentModel.DefaultPropertyAttribute("Scripts")]
902     [System.Web.UI.NonVisualControlAttribute]
903     [System.Web.UI.ParseChildrenAttribute(true)]
904     [System.Web.UI.PersistChildrenAttribute(false)]
905     public partial class ScriptManagerProxy : System.Web.UI.Control
906     {
ScriptManagerProxy()907         public ScriptManagerProxy() { }
908         [System.ComponentModel.CategoryAttribute("Behavior")]
909         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
910         [System.ComponentModel.MergablePropertyAttribute(false)]
911         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
912         public System.Web.UI.AuthenticationServiceManager AuthenticationService { get { throw null; } }
913         [System.ComponentModel.CategoryAttribute("Behavior")]
914         [System.ComponentModel.DefaultValueAttribute(null)]
915         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
916         [System.ComponentModel.MergablePropertyAttribute(false)]
917         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
918         public System.Web.UI.CompositeScriptReference CompositeScript { get { throw null; } }
919         [System.ComponentModel.CategoryAttribute("Behavior")]
920         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
921         [System.ComponentModel.MergablePropertyAttribute(false)]
922         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
923         public System.Web.UI.ProfileServiceManager ProfileService { get { throw null; } }
924         public System.Web.UI.RoleServiceManager RoleService { get { throw null; } }
925         [System.ComponentModel.CategoryAttribute("Behavior")]
926         [System.ComponentModel.MergablePropertyAttribute(false)]
927         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
928         public System.Web.UI.ScriptReferenceCollection Scripts { get { throw null; } }
929         [System.ComponentModel.CategoryAttribute("Behavior")]
930         [System.ComponentModel.MergablePropertyAttribute(false)]
931         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
932         public System.Web.UI.ServiceReferenceCollection Services { get { throw null; } }
933         [System.ComponentModel.BrowsableAttribute(false)]
934         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
935         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
936         public override bool Visible { get { throw null; } set { } }
937         public event System.EventHandler<System.Web.UI.HistoryEventArgs> Navigate { add { } remove { } }
OnInit(System.EventArgs e)938         protected internal override void OnInit(System.EventArgs e) { }
939     }
940     public enum ScriptMode
941     {
942         Auto = 0,
943         Debug = 2,
944         Inherit = 1,
945         Release = 3,
946     }
947     [System.ComponentModel.DefaultPropertyAttribute("Path")]
948     public partial class ScriptReference : System.Web.UI.ScriptReferenceBase
949     {
ScriptReference()950         public ScriptReference() { }
ScriptReference(string path)951         public ScriptReference(string path) { }
ScriptReference(string name, string assembly)952         public ScriptReference(string name, string assembly) { }
953         public string Assembly { get { throw null; } set { } }
954         public bool IgnoreScriptPath { get { throw null; } set { } }
955         public string Name { get { throw null; } set { } }
956         [System.MonoTODOAttribute("Compression not supported yet.")]
GetUrl(System.Web.UI.ScriptManager scriptManager, bool zip)957         protected internal override string GetUrl(System.Web.UI.ScriptManager scriptManager, bool zip) { throw null; }
IsAjaxFrameworkScript(System.Web.UI.ScriptManager scriptManager)958         protected internal override bool IsAjaxFrameworkScript(System.Web.UI.ScriptManager scriptManager) { throw null; }
959         [System.ObsoleteAttribute("Use IsAjaxFrameworkScript(ScriptManager)")]
IsFromSystemWebExtensions()960         protected internal override bool IsFromSystemWebExtensions() { throw null; }
ToString()961         public override string ToString() { throw null; }
962     }
963     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
964     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
965     public abstract partial class ScriptReferenceBase
966     {
ScriptReferenceBase()967         protected ScriptReferenceBase() { }
968         public bool NotifyScriptLoaded { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
969         public string Path { get { throw null; } set { } }
970         [System.ComponentModel.TypeConverterAttribute(typeof(System.Web.UI.WebControls.StringArrayConverter))]
971         public string[] ResourceUICultures { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
972         public System.Web.UI.ScriptMode ScriptMode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
GetUrl(System.Web.UI.ScriptManager scriptManager, bool zip)973         protected internal abstract string GetUrl(System.Web.UI.ScriptManager scriptManager, bool zip);
IsAjaxFrameworkScript(System.Web.UI.ScriptManager scriptManager)974         protected internal virtual bool IsAjaxFrameworkScript(System.Web.UI.ScriptManager scriptManager) { throw null; }
975         [System.ObsoleteAttribute("Use IsAjaxFrameworkScript(ScriptManager)")]
IsFromSystemWebExtensions()976         protected internal abstract bool IsFromSystemWebExtensions();
ReplaceExtension(string pathOrName)977         protected static string ReplaceExtension(string pathOrName) { throw null; }
978     }
979     public partial class ScriptReferenceCollection : System.Collections.ObjectModel.Collection<System.Web.UI.ScriptReference>
980     {
ScriptReferenceCollection()981         public ScriptReferenceCollection() { }
982     }
983     public partial class ScriptReferenceEventArgs : System.EventArgs
984     {
ScriptReferenceEventArgs(System.Web.UI.ScriptReference script)985         public ScriptReferenceEventArgs(System.Web.UI.ScriptReference script) { }
986         public System.Web.UI.ScriptReference Script { get { throw null; } }
987     }
988     [System.AttributeUsageAttribute((System.AttributeTargets)(1), AllowMultiple=true)]
989     public sealed partial class ScriptResourceAttribute : System.Attribute
990     {
ScriptResourceAttribute(string scriptName)991         public ScriptResourceAttribute(string scriptName) { }
ScriptResourceAttribute(string scriptName, string stringResourceName, string stringResourceClientTypeName)992         public ScriptResourceAttribute(string scriptName, string stringResourceName, string stringResourceClientTypeName) { }
993         public string ScriptName { get { throw null; } }
994         public string ScriptResourceName { get { throw null; } }
995         public string StringResourceClientTypeName { get { throw null; } }
996         public string StringResourceName { get { throw null; } }
997         public string TypeName { get { throw null; } }
998     }
999     public partial class ScriptResourceDefinition
1000     {
ScriptResourceDefinition()1001         public ScriptResourceDefinition() { }
1002         public string CdnDebugPath { get { throw null; } set { } }
1003         public string CdnPath { get { throw null; } set { } }
1004         public bool CdnSupportsSecureConnection { get { throw null; } set { } }
1005         public string DebugPath { get { throw null; } set { } }
1006         public string LoadSuccessExpression { get { throw null; } set { } }
1007         public string Path { get { throw null; } set { } }
1008         public System.Reflection.Assembly ResourceAssembly { get { throw null; } set { } }
1009         public string ResourceName { get { throw null; } set { } }
1010     }
1011     public partial class ScriptResourceMapping
1012     {
ScriptResourceMapping()1013         public ScriptResourceMapping() { }
AddDefinition(string name, System.Reflection.Assembly assembly, System.Web.UI.ScriptResourceDefinition definition)1014         public void AddDefinition(string name, System.Reflection.Assembly assembly, System.Web.UI.ScriptResourceDefinition definition) { }
AddDefinition(string name, System.Web.UI.ScriptResourceDefinition definition)1015         public void AddDefinition(string name, System.Web.UI.ScriptResourceDefinition definition) { }
Clear()1016         public void Clear() { }
GetDefinition(string name)1017         public System.Web.UI.ScriptResourceDefinition GetDefinition(string name) { throw null; }
GetDefinition(string name, System.Reflection.Assembly assembly)1018         public System.Web.UI.ScriptResourceDefinition GetDefinition(string name, System.Reflection.Assembly assembly) { throw null; }
GetDefinition(System.Web.UI.ScriptReference scriptReference)1019         public System.Web.UI.ScriptResourceDefinition GetDefinition(System.Web.UI.ScriptReference scriptReference) { throw null; }
RemoveDefinition(string name)1020         public System.Web.UI.ScriptResourceDefinition RemoveDefinition(string name) { throw null; }
RemoveDefinition(string name, System.Reflection.Assembly assembly)1021         public System.Web.UI.ScriptResourceDefinition RemoveDefinition(string name, System.Reflection.Assembly assembly) { throw null; }
1022     }
1023     [System.ComponentModel.DefaultPropertyAttribute("Path")]
1024     public partial class ServiceReference
1025     {
ServiceReference()1026         public ServiceReference() { }
ServiceReference(string path)1027         public ServiceReference(string path) { }
1028         [System.ComponentModel.CategoryAttribute("Behavior")]
1029         [System.ComponentModel.DefaultValueAttribute(false)]
1030         public virtual bool InlineScript { get { throw null; } set { } }
1031         [System.ComponentModel.CategoryAttribute("Behavior")]
1032         [System.ComponentModel.DefaultValueAttribute("")]
1033         public virtual string Path { get { throw null; } set { } }
GetProxyScript(System.Web.UI.ScriptManager scriptManager, System.Web.UI.Control containingControl)1034         protected internal virtual string GetProxyScript(System.Web.UI.ScriptManager scriptManager, System.Web.UI.Control containingControl) { throw null; }
GetProxyUrl(System.Web.UI.ScriptManager scriptManager, System.Web.UI.Control containingControl)1035         protected internal virtual string GetProxyUrl(System.Web.UI.ScriptManager scriptManager, System.Web.UI.Control containingControl) { throw null; }
ToString()1036         public override string ToString() { throw null; }
1037     }
1038     public partial class ServiceReferenceCollection : System.Collections.ObjectModel.Collection<System.Web.UI.ServiceReference>
1039     {
ServiceReferenceCollection()1040         public ServiceReferenceCollection() { }
1041     }
1042     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=true)]
1043     public sealed partial class TargetControlTypeAttribute : System.Attribute
1044     {
TargetControlTypeAttribute(System.Type targetControlType)1045         public TargetControlTypeAttribute(System.Type targetControlType) { }
1046         public System.Type TargetControlType { get { throw null; } }
1047         public override object TypeId { get { throw null; } }
1048     }
1049     [System.ComponentModel.DefaultEventAttribute("Tick")]
1050     [System.ComponentModel.DefaultPropertyAttribute("Interval")]
1051     [System.ComponentModel.DesignerAttribute("System.Web.UI.Design.TimerDesigner, System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
1052     [System.Web.UI.NonVisualControlAttribute]
1053     [System.Web.UI.SupportsEventValidationAttribute]
1054     public partial class Timer : System.Web.UI.Control, System.Web.UI.IPostBackEventHandler, System.Web.UI.IScriptControl
1055     {
Timer()1056         public Timer() { }
1057         [System.ComponentModel.CategoryAttribute("Behavior")]
1058         [System.ComponentModel.DefaultValueAttribute(true)]
1059         public bool Enabled { get { throw null; } set { } }
1060         [System.ComponentModel.CategoryAttribute("Behavior")]
1061         [System.ComponentModel.DefaultValueAttribute(60000)]
1062         public int Interval { get { throw null; } set { } }
1063         [System.ComponentModel.BrowsableAttribute(false)]
1064         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1065         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1066         public override bool Visible { get { throw null; } set { } }
1067         [System.ComponentModel.CategoryAttribute("Action")]
1068         public event System.EventHandler<System.EventArgs> Tick { add { } remove { } }
GetScriptDescriptors()1069         protected virtual System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> GetScriptDescriptors() { throw null; }
GetScriptReferences()1070         protected virtual System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> GetScriptReferences() { throw null; }
OnPreRender(System.EventArgs e)1071         protected internal override void OnPreRender(System.EventArgs e) { }
OnTick(System.EventArgs e)1072         protected virtual void OnTick(System.EventArgs e) { }
RaisePostBackEvent(string eventArgument)1073         protected virtual void RaisePostBackEvent(string eventArgument) { }
Render(System.Web.UI.HtmlTextWriter writer)1074         protected internal override void Render(System.Web.UI.HtmlTextWriter writer) { }
System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(string eventArgument)1075         void System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(string eventArgument) { }
System.Web.UI.IScriptControl.GetScriptDescriptors()1076         System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> System.Web.UI.IScriptControl.GetScriptDescriptors() { throw null; }
System.Web.UI.IScriptControl.GetScriptReferences()1077         System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> System.Web.UI.IScriptControl.GetScriptReferences() { throw null; }
1078     }
1079     [System.ComponentModel.DefaultPropertyAttribute("Triggers")]
1080     [System.ComponentModel.DesignerAttribute("System.Web.UI.Design.UpdatePanelDesigner, System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
1081     [System.Web.UI.ParseChildrenAttribute(true)]
1082     [System.Web.UI.PersistChildrenAttribute(false)]
1083     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1084     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1085     public partial class UpdatePanel : System.Web.UI.Control, System.Web.UI.IAttributeAccessor
1086     {
UpdatePanel()1087         public UpdatePanel() { }
1088         public System.Web.UI.AttributeCollection Attributes { get { throw null; } }
1089         [System.ComponentModel.CategoryAttribute("Behavior")]
1090         [System.ComponentModel.DefaultValueAttribute(true)]
1091         public bool ChildrenAsTriggers { get { throw null; } set { } }
1092         [System.ComponentModel.BrowsableAttribute(false)]
1093         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1094         [System.Web.UI.TemplateInstanceAttribute((System.Web.UI.TemplateInstance)(1))]
1095         public System.Web.UI.ITemplate ContentTemplate { get { throw null; } set { } }
1096         [System.ComponentModel.BrowsableAttribute(false)]
1097         public System.Web.UI.Control ContentTemplateContainer { get { throw null; } }
1098         public sealed override System.Web.UI.ControlCollection Controls { get { throw null; } }
1099         [System.ComponentModel.BrowsableAttribute(false)]
1100         public bool IsInPartialRendering { get { throw null; } }
1101         [System.ComponentModel.CategoryAttribute("Layout")]
1102         public System.Web.UI.UpdatePanelRenderMode RenderMode { get { throw null; } set { } }
1103         protected internal virtual bool RequiresUpdate { get { throw null; } }
1104         [System.ComponentModel.CategoryAttribute("Behavior")]
1105         [System.ComponentModel.DefaultValueAttribute("")]
1106         [System.ComponentModel.MergablePropertyAttribute(false)]
1107         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1108         public System.Web.UI.UpdatePanelTriggerCollection Triggers { get { throw null; } }
1109         [System.ComponentModel.CategoryAttribute("Behavior")]
1110         [System.ComponentModel.DefaultValueAttribute((System.Web.UI.UpdatePanelUpdateMode)(0))]
1111         public System.Web.UI.UpdatePanelUpdateMode UpdateMode { get { throw null; } set { } }
CreateContentTemplateContainer()1112         protected virtual System.Web.UI.Control CreateContentTemplateContainer() { throw null; }
CreateControlCollection()1113         protected sealed override System.Web.UI.ControlCollection CreateControlCollection() { throw null; }
Initialize()1114         protected internal virtual void Initialize() { }
OnInit(System.EventArgs e)1115         protected internal override void OnInit(System.EventArgs e) { }
OnLoad(System.EventArgs e)1116         protected internal override void OnLoad(System.EventArgs e) { }
OnPreRender(System.EventArgs e)1117         protected internal override void OnPreRender(System.EventArgs e) { }
OnUnload(System.EventArgs e)1118         protected internal override void OnUnload(System.EventArgs e) { }
Render(System.Web.UI.HtmlTextWriter writer)1119         protected internal override void Render(System.Web.UI.HtmlTextWriter writer) { }
RenderChildren(System.Web.UI.HtmlTextWriter writer)1120         protected internal override void RenderChildren(System.Web.UI.HtmlTextWriter writer) { }
System.Web.UI.IAttributeAccessor.GetAttribute(string key)1121         string System.Web.UI.IAttributeAccessor.GetAttribute(string key) { throw null; }
System.Web.UI.IAttributeAccessor.SetAttribute(string key, string value)1122         void System.Web.UI.IAttributeAccessor.SetAttribute(string key, string value) { }
Update()1123         public void Update() { }
1124     }
1125     public abstract partial class UpdatePanelControlTrigger : System.Web.UI.UpdatePanelTrigger
1126     {
UpdatePanelControlTrigger()1127         protected UpdatePanelControlTrigger() { }
1128         [System.ComponentModel.CategoryAttribute("Behavior")]
1129         [System.ComponentModel.DefaultValueAttribute("")]
1130         [System.Web.UI.IDReferencePropertyAttribute]
1131         public string ControlID { get { throw null; } set { } }
FindTargetControl(bool searchNamingContainers)1132         protected System.Web.UI.Control FindTargetControl(bool searchNamingContainers) { throw null; }
1133     }
1134     public enum UpdatePanelRenderMode
1135     {
1136         Block = 0,
1137         Inline = 1,
1138     }
1139     public abstract partial class UpdatePanelTrigger
1140     {
UpdatePanelTrigger()1141         protected UpdatePanelTrigger() { }
1142         [System.ComponentModel.BrowsableAttribute(false)]
1143         public System.Web.UI.UpdatePanel Owner { get { throw null; } }
HasTriggered()1144         protected internal abstract bool HasTriggered();
Initialize()1145         protected internal virtual void Initialize() { }
1146     }
1147     public partial class UpdatePanelTriggerCollection : System.Collections.ObjectModel.Collection<System.Web.UI.UpdatePanelTrigger>
1148     {
UpdatePanelTriggerCollection(System.Web.UI.UpdatePanel owner)1149         public UpdatePanelTriggerCollection(System.Web.UI.UpdatePanel owner) { }
1150         public System.Web.UI.UpdatePanel Owner { get { throw null; } }
ClearItems()1151         protected override void ClearItems() { }
InsertItem(int index, System.Web.UI.UpdatePanelTrigger item)1152         protected override void InsertItem(int index, System.Web.UI.UpdatePanelTrigger item) { }
RemoveItem(int index)1153         protected override void RemoveItem(int index) { }
SetItem(int index, System.Web.UI.UpdatePanelTrigger item)1154         protected override void SetItem(int index, System.Web.UI.UpdatePanelTrigger item) { }
1155     }
1156     public enum UpdatePanelUpdateMode
1157     {
1158         Always = 0,
1159         Conditional = 1,
1160     }
1161     [System.ComponentModel.DefaultPropertyAttribute("AssociatedUpdatePanelID")]
1162     [System.ComponentModel.DesignerAttribute("System.Web.UI.Design.UpdateProgressDesigner, System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
1163     [System.Web.UI.ParseChildrenAttribute(true)]
1164     [System.Web.UI.PersistChildrenAttribute(false)]
1165     public partial class UpdateProgress : System.Web.UI.Control, System.Web.UI.IAttributeAccessor, System.Web.UI.IScriptControl
1166     {
UpdateProgress()1167         public UpdateProgress() { }
1168         [System.ComponentModel.CategoryAttribute("Behavior")]
1169         [System.ComponentModel.DefaultValueAttribute("")]
1170         [System.Web.UI.IDReferencePropertyAttribute(typeof(System.Web.UI.UpdatePanel))]
1171         public string AssociatedUpdatePanelID { get { throw null; } set { } }
1172         public System.Web.UI.AttributeCollection Attributes { get { throw null; } }
1173         public override System.Web.UI.ControlCollection Controls { get { throw null; } }
1174         [System.ComponentModel.CategoryAttribute("Behavior")]
1175         [System.ComponentModel.DefaultValueAttribute(500)]
1176         public int DisplayAfter { get { throw null; } set { } }
1177         [System.ComponentModel.CategoryAttribute("Behavior")]
1178         [System.ComponentModel.DefaultValueAttribute(true)]
1179         public bool DynamicLayout { get { throw null; } set { } }
1180         [System.ComponentModel.BrowsableAttribute(false)]
1181         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1182         public System.Web.UI.ITemplate ProgressTemplate { get { throw null; } set { } }
CreateChildControls()1183         protected internal override void CreateChildControls() { }
DataBind()1184         public override void DataBind() { }
GetScriptDescriptors()1185         protected virtual System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> GetScriptDescriptors() { throw null; }
GetScriptReferences()1186         protected virtual System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> GetScriptReferences() { throw null; }
OnPreRender(System.EventArgs e)1187         protected internal override void OnPreRender(System.EventArgs e) { }
Render(System.Web.UI.HtmlTextWriter writer)1188         protected internal override void Render(System.Web.UI.HtmlTextWriter writer) { }
System.Web.UI.IAttributeAccessor.GetAttribute(string key)1189         string System.Web.UI.IAttributeAccessor.GetAttribute(string key) { throw null; }
System.Web.UI.IAttributeAccessor.SetAttribute(string key, string value)1190         void System.Web.UI.IAttributeAccessor.SetAttribute(string key, string value) { }
System.Web.UI.IScriptControl.GetScriptDescriptors()1191         System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> System.Web.UI.IScriptControl.GetScriptDescriptors() { throw null; }
System.Web.UI.IScriptControl.GetScriptReferences()1192         System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> System.Web.UI.IScriptControl.GetScriptReferences() { throw null; }
1193     }
1194 }
1195 namespace System.Web.UI.WebControls
1196 {
1197     public abstract partial class ContextDataSource : System.Web.UI.WebControls.QueryableDataSource
1198     {
ContextDataSource()1199         protected ContextDataSource() { }
1200         public virtual string ContextTypeName { get { throw null; } set { } }
1201         protected string EntitySetName { get { throw null; } set { } }
1202         public virtual string EntityTypeName { get { throw null; } set { } }
1203     }
1204     public partial class ContextDataSourceContextData
1205     {
ContextDataSourceContextData()1206         public ContextDataSourceContextData() { }
ContextDataSourceContextData(object context)1207         public ContextDataSourceContextData(object context) { }
1208         public object Context { get { throw null; } set { } }
1209         public object EntitySet { get { throw null; } set { } }
1210     }
1211     public abstract partial class ContextDataSourceView : System.Web.UI.WebControls.QueryableDataSourceView
1212     {
1213         protected static readonly object EventContextCreated;
1214         protected static readonly object EventContextCreating;
1215         protected static readonly object EventContextDisposing;
ContextDataSourceView(System.Web.UI.DataSourceControl owner, string viewName, System.Web.HttpContext context)1216         protected ContextDataSourceView(System.Web.UI.DataSourceControl owner, string viewName, System.Web.HttpContext context) : base (default(System.Web.UI.DataSourceControl), default(string), default(System.Web.HttpContext)) { }
1217         protected object Context { get { throw null; } set { } }
1218         public virtual System.Type ContextType { get { throw null; } }
1219         public virtual string ContextTypeName { get { throw null; } set { } }
1220         protected object EntitySet { get { throw null; } }
1221         public string EntitySetName { get { throw null; } set { } }
1222         protected System.Type EntitySetType { get { throw null; } }
1223         protected override System.Type EntityType { get { throw null; } }
1224         public string EntityTypeName { get { throw null; } set { } }
CreateContext(System.Web.UI.DataSourceOperation operation)1225         protected virtual System.Web.UI.WebControls.ContextDataSourceContextData CreateContext(System.Web.UI.DataSourceOperation operation) { throw null; }
DisposeContext()1226         protected void DisposeContext() { }
DisposeContext(object dataContext)1227         protected virtual void DisposeContext(object dataContext) { }
ExecuteDelete(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues)1228         protected override int ExecuteDelete(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues) { throw null; }
ExecuteInsert(System.Collections.IDictionary values)1229         protected override int ExecuteInsert(System.Collections.IDictionary values) { throw null; }
ExecuteUpdate(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues)1230         protected override int ExecuteUpdate(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues) { throw null; }
GetDataObjectType(System.Type type)1231         protected virtual System.Type GetDataObjectType(System.Type type) { throw null; }
GetEntitySetType()1232         protected virtual System.Type GetEntitySetType() { throw null; }
GetSource(System.Web.UI.WebControls.QueryContext context)1233         protected override object GetSource(System.Web.UI.WebControls.QueryContext context) { throw null; }
1234     }
1235     [System.ComponentModel.DesignerAttribute("System.Web.UI.Design.WebControls.DataPagerDesigner, System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
1236     [System.ComponentModel.ToolboxItemFilterAttribute("System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", (System.ComponentModel.ToolboxItemFilterType)(3))]
1237     [System.Web.UI.ParseChildrenAttribute(true)]
1238     [System.Web.UI.PersistChildrenAttribute(false)]
1239     [System.Web.UI.SupportsEventValidationAttribute]
1240     [System.Web.UI.ThemeableAttribute(true)]
1241     public partial class DataPager : System.Web.UI.Control, System.Web.UI.IAttributeAccessor, System.Web.UI.INamingContainer, System.Web.UI.WebControls.ICompositeControlDesignerAccessor
1242     {
DataPager()1243         public DataPager() { }
1244         [System.ComponentModel.BrowsableAttribute(false)]
1245         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1246         public System.Web.UI.AttributeCollection Attributes { get { throw null; } }
1247         public override System.Web.UI.ControlCollection Controls { get { throw null; } }
1248         [System.ComponentModel.CategoryAttribute("Default")]
1249         [System.ComponentModel.DefaultValueAttribute("")]
1250         [System.ComponentModel.EditorAttribute("System.Web.UI.Design.WebControls.DataPagerFieldTypeEditor, System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", typeof(System.Drawing.Design.UITypeEditor))]
1251         [System.ComponentModel.MergablePropertyAttribute(false)]
1252         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1253         public virtual System.Web.UI.WebControls.DataPagerFieldCollection Fields { get { throw null; } }
1254         [System.ComponentModel.BrowsableAttribute(false)]
1255         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1256         public int MaximumRows { get { throw null; } }
1257         [System.ComponentModel.DefaultValueAttribute("")]
1258         [System.Web.UI.IDReferencePropertyAttribute(typeof(System.Web.UI.WebControls.IPageableItemContainer))]
1259         [System.Web.UI.ThemeableAttribute(false)]
1260         public virtual string PagedControlID { get { throw null; } set { } }
1261         [System.ComponentModel.DefaultValueAttribute(10)]
1262         public int PageSize { get { throw null; } set { } }
1263         [System.ComponentModel.DefaultValueAttribute("")]
1264         public string QueryStringField { get { throw null; } set { } }
1265         [System.ComponentModel.BrowsableAttribute(false)]
1266         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1267         public int StartRowIndex { get { throw null; } }
1268         [System.ComponentModel.BrowsableAttribute(false)]
1269         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1270         protected virtual System.Web.UI.HtmlTextWriterTag TagKey { get { throw null; } }
1271         [System.ComponentModel.BrowsableAttribute(false)]
1272         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1273         public int TotalRowCount { get { throw null; } }
AddAttributesToRender(System.Web.UI.HtmlTextWriter writer)1274         protected virtual void AddAttributesToRender(System.Web.UI.HtmlTextWriter writer) { }
ConnectToEvents(System.Web.UI.WebControls.IPageableItemContainer container)1275         protected virtual void ConnectToEvents(System.Web.UI.WebControls.IPageableItemContainer container) { }
CreatePagerFields()1276         protected virtual void CreatePagerFields() { }
DataBind()1277         public override void DataBind() { }
FindPageableItemContainer()1278         protected virtual System.Web.UI.WebControls.IPageableItemContainer FindPageableItemContainer() { throw null; }
LoadControlState(object savedState)1279         protected internal override void LoadControlState(object savedState) { }
LoadViewState(object savedState)1280         protected override void LoadViewState(object savedState) { }
OnBubbleEvent(object source, System.EventArgs e)1281         protected override bool OnBubbleEvent(object source, System.EventArgs e) { throw null; }
OnInit(System.EventArgs e)1282         protected internal override void OnInit(System.EventArgs e) { }
OnLoad(System.EventArgs e)1283         protected internal override void OnLoad(System.EventArgs e) { }
OnTotalRowCountAvailable(object sender, System.Web.UI.WebControls.PageEventArgs e)1284         protected virtual void OnTotalRowCountAvailable(object sender, System.Web.UI.WebControls.PageEventArgs e) { }
RecreateChildControls()1285         protected virtual void RecreateChildControls() { }
Render(System.Web.UI.HtmlTextWriter writer)1286         protected internal override void Render(System.Web.UI.HtmlTextWriter writer) { }
RenderBeginTag(System.Web.UI.HtmlTextWriter writer)1287         public virtual void RenderBeginTag(System.Web.UI.HtmlTextWriter writer) { }
RenderContents(System.Web.UI.HtmlTextWriter writer)1288         protected virtual void RenderContents(System.Web.UI.HtmlTextWriter writer) { }
SaveControlState()1289         protected internal override object SaveControlState() { throw null; }
SaveViewState()1290         protected override object SaveViewState() { throw null; }
SetPageProperties(int startRowIndex, int maximumRows, bool databind)1291         public virtual void SetPageProperties(int startRowIndex, int maximumRows, bool databind) { }
System.Web.UI.IAttributeAccessor.GetAttribute(string name)1292         string System.Web.UI.IAttributeAccessor.GetAttribute(string name) { throw null; }
System.Web.UI.IAttributeAccessor.SetAttribute(string name, string value)1293         void System.Web.UI.IAttributeAccessor.SetAttribute(string name, string value) { }
System.Web.UI.WebControls.ICompositeControlDesignerAccessor.RecreateChildControls()1294         void System.Web.UI.WebControls.ICompositeControlDesignerAccessor.RecreateChildControls() { }
TrackViewState()1295         protected override void TrackViewState() { }
1296     }
1297     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1298     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1299     public partial class DataPagerCommandEventArgs : System.Web.UI.WebControls.CommandEventArgs
1300     {
DataPagerCommandEventArgs(System.Web.UI.WebControls.DataPagerField pagerField, int totalRowCount, System.Web.UI.WebControls.CommandEventArgs originalArgs, System.Web.UI.WebControls.DataPagerFieldItem item)1301         public DataPagerCommandEventArgs(System.Web.UI.WebControls.DataPagerField pagerField, int totalRowCount, System.Web.UI.WebControls.CommandEventArgs originalArgs, System.Web.UI.WebControls.DataPagerFieldItem item) : base (default(System.Web.UI.WebControls.CommandEventArgs)) { }
1302         public System.Web.UI.WebControls.DataPagerFieldItem Item { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1303         public int NewMaximumRows { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1304         public int NewStartRowIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1305         public System.Web.UI.WebControls.DataPagerField PagerField { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1306         public int TotalRowCount { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1307     }
1308     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1309     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1310     public abstract partial class DataPagerField : System.Web.UI.IStateManager
1311     {
DataPagerField()1312         protected DataPagerField() { }
1313         protected System.Web.UI.WebControls.DataPager DataPager { get { throw null; } }
1314         protected bool IsTrackingViewState { get { throw null; } }
1315         protected bool QueryStringHandled { get { throw null; } set { } }
1316         protected string QueryStringValue { get { throw null; } }
1317         bool System.Web.UI.IStateManager.IsTrackingViewState { get { throw null; } }
1318         protected System.Web.UI.StateBag ViewState { get { throw null; } }
1319         public bool Visible { get { throw null; } set { } }
CloneField()1320         protected internal System.Web.UI.WebControls.DataPagerField CloneField() { throw null; }
CopyProperties(System.Web.UI.WebControls.DataPagerField newField)1321         protected virtual void CopyProperties(System.Web.UI.WebControls.DataPagerField newField) { }
CreateDataPagers(System.Web.UI.WebControls.DataPagerFieldItem container, int startRowIndex, int maximumRows, int totalRowCount, int fieldIndex)1322         public abstract void CreateDataPagers(System.Web.UI.WebControls.DataPagerFieldItem container, int startRowIndex, int maximumRows, int totalRowCount, int fieldIndex);
CreateField()1323         protected abstract System.Web.UI.WebControls.DataPagerField CreateField();
GetQueryStringNavigateUrl(int pageNumber)1324         protected string GetQueryStringNavigateUrl(int pageNumber) { throw null; }
HandleEvent(System.Web.UI.WebControls.CommandEventArgs e)1325         public abstract void HandleEvent(System.Web.UI.WebControls.CommandEventArgs e);
LoadViewState(object savedState)1326         protected virtual void LoadViewState(object savedState) { }
OnFieldChanged()1327         protected virtual void OnFieldChanged() { }
SaveViewState()1328         protected virtual object SaveViewState() { throw null; }
System.Web.UI.IStateManager.LoadViewState(object state)1329         void System.Web.UI.IStateManager.LoadViewState(object state) { }
System.Web.UI.IStateManager.SaveViewState()1330         object System.Web.UI.IStateManager.SaveViewState() { throw null; }
System.Web.UI.IStateManager.TrackViewState()1331         void System.Web.UI.IStateManager.TrackViewState() { }
TrackViewState()1332         protected virtual void TrackViewState() { }
1333     }
1334     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1335     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1336     public partial class DataPagerFieldCollection : System.Web.UI.StateManagedCollection
1337     {
DataPagerFieldCollection(System.Web.UI.WebControls.DataPager dataPager)1338         public DataPagerFieldCollection(System.Web.UI.WebControls.DataPager dataPager) { }
1339         [System.ComponentModel.BrowsableAttribute(false)]
1340         public System.Web.UI.WebControls.DataPagerField this[int index] { get { throw null; } }
1341         public event System.EventHandler FieldsChanged { add { } remove { } }
Add(System.Web.UI.WebControls.DataPagerField field)1342         public void Add(System.Web.UI.WebControls.DataPagerField field) { }
CloneFields(System.Web.UI.WebControls.DataPager pager)1343         public System.Web.UI.WebControls.DataPagerFieldCollection CloneFields(System.Web.UI.WebControls.DataPager pager) { throw null; }
Contains(System.Web.UI.WebControls.DataPagerField field)1344         public bool Contains(System.Web.UI.WebControls.DataPagerField field) { throw null; }
CopyTo(System.Web.UI.WebControls.DataPagerField[] array, int index)1345         public void CopyTo(System.Web.UI.WebControls.DataPagerField[] array, int index) { }
CreateKnownType(int index)1346         protected override object CreateKnownType(int index) { throw null; }
GetKnownTypes()1347         protected override System.Type[] GetKnownTypes() { throw null; }
IndexOf(System.Web.UI.WebControls.DataPagerField field)1348         public int IndexOf(System.Web.UI.WebControls.DataPagerField field) { throw null; }
Insert(int index, System.Web.UI.WebControls.DataPagerField field)1349         public void Insert(int index, System.Web.UI.WebControls.DataPagerField field) { }
OnClearComplete()1350         protected override void OnClearComplete() { }
OnInsertComplete(int index, object value)1351         protected override void OnInsertComplete(int index, object value) { }
OnRemoveComplete(int index, object value)1352         protected override void OnRemoveComplete(int index, object value) { }
OnValidate(object o)1353         protected override void OnValidate(object o) { }
Remove(System.Web.UI.WebControls.DataPagerField field)1354         public void Remove(System.Web.UI.WebControls.DataPagerField field) { }
RemoveAt(int index)1355         public void RemoveAt(int index) { }
SetDirtyObject(object o)1356         protected override void SetDirtyObject(object o) { }
1357     }
1358     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1359     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1360     public partial class DataPagerFieldCommandEventArgs : System.Web.UI.WebControls.CommandEventArgs
1361     {
DataPagerFieldCommandEventArgs(System.Web.UI.WebControls.DataPagerFieldItem item, object commandSource, System.Web.UI.WebControls.CommandEventArgs originalArgs)1362         public DataPagerFieldCommandEventArgs(System.Web.UI.WebControls.DataPagerFieldItem item, object commandSource, System.Web.UI.WebControls.CommandEventArgs originalArgs) : base (default(System.Web.UI.WebControls.CommandEventArgs)) { }
1363         public object CommandSource { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1364         public System.Web.UI.WebControls.DataPagerFieldItem Item { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1365     }
1366     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1367     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1368     public partial class DataPagerFieldItem : System.Web.UI.Control, System.Web.UI.INamingContainer
1369     {
DataPagerFieldItem(System.Web.UI.WebControls.DataPagerField field, System.Web.UI.WebControls.DataPager pager)1370         public DataPagerFieldItem(System.Web.UI.WebControls.DataPagerField field, System.Web.UI.WebControls.DataPager pager) { }
1371         public System.Web.UI.WebControls.DataPager Pager { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1372         public System.Web.UI.WebControls.DataPagerField PagerField { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
OnBubbleEvent(object source, System.EventArgs e)1373         protected override bool OnBubbleEvent(object source, System.EventArgs e) { throw null; }
1374     }
1375     public enum InsertItemPosition
1376     {
1377         FirstItem = 1,
1378         LastItem = 2,
1379         None = 0,
1380     }
1381     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1382     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1383     public partial interface IPageableItemContainer
1384     {
1385         int MaximumRows { get; }
1386         int StartRowIndex { get; }
1387         event System.EventHandler<System.Web.UI.WebControls.PageEventArgs> TotalRowCountAvailable;
SetPageProperties(int startRowIndex, int maximumRows, bool databind)1388         void SetPageProperties(int startRowIndex, int maximumRows, bool databind);
1389     }
1390     public partial interface IQueryableDataSource : System.Web.UI.IDataSource
1391     {
1392         event System.EventHandler<System.Web.UI.WebControls.QueryCreatedEventArgs> QueryCreated;
RaiseViewChanged()1393         void RaiseViewChanged();
1394     }
1395     [System.ComponentModel.DefaultEventAttribute("Selecting")]
1396     [System.ComponentModel.DefaultPropertyAttribute("ContextTypeName")]
1397     [System.ComponentModel.DesignerAttribute("System.Web.UI.Design.WebControls.LinqDataSourceDesigner, System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
1398     [System.ComponentModel.ToolboxItemFilterAttribute("System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", (System.ComponentModel.ToolboxItemFilterType)(3))]
1399     [System.Web.UI.ParseChildrenAttribute(true)]
1400     [System.Web.UI.PersistChildrenAttribute(false)]
1401     public partial class LinqDataSource : System.Web.UI.WebControls.ContextDataSource, System.Web.DynamicData.IDynamicDataSource, System.Web.UI.IDataSource
1402     {
LinqDataSource()1403         public LinqDataSource() { }
1404         [System.ComponentModel.CategoryAttribute("Behavior")]
1405         [System.ComponentModel.DefaultValueAttribute(false)]
1406         public bool AutoGenerateOrderByClause { get { throw null; } set { } }
1407         [System.ComponentModel.CategoryAttribute("Behavior")]
1408         [System.ComponentModel.DefaultValueAttribute(false)]
1409         public bool AutoGenerateWhereClause { get { throw null; } set { } }
1410         [System.ComponentModel.CategoryAttribute("Behavior")]
1411         [System.ComponentModel.DefaultValueAttribute(true)]
1412         public bool AutoPage { get { throw null; } set { } }
1413         [System.ComponentModel.CategoryAttribute("Behavior")]
1414         [System.ComponentModel.DefaultValueAttribute(true)]
1415         public bool AutoSort { get { throw null; } set { } }
1416         [System.ComponentModel.CategoryAttribute("Data")]
1417         [System.ComponentModel.DefaultValueAttribute("")]
1418         public override string ContextTypeName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1419         [System.ComponentModel.BrowsableAttribute(false)]
1420         [System.ComponentModel.CategoryAttribute("Data")]
1421         [System.ComponentModel.DefaultValueAttribute(null)]
1422         [System.ComponentModel.MergablePropertyAttribute(false)]
1423         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1424         public System.Web.UI.WebControls.ParameterCollection DeleteParameters { get { throw null; } }
1425         [System.ComponentModel.CategoryAttribute("Behavior")]
1426         [System.ComponentModel.DefaultValueAttribute(false)]
1427         public bool EnableDelete { get { throw null; } set { } }
1428         [System.ComponentModel.CategoryAttribute("Behavior")]
1429         [System.ComponentModel.DefaultValueAttribute(false)]
1430         public bool EnableInsert { get { throw null; } set { } }
1431         [System.ComponentModel.CategoryAttribute("Behavior")]
1432         [System.ComponentModel.DefaultValueAttribute(false)]
1433         public bool EnableObjectTracking { get { throw null; } set { } }
1434         [System.ComponentModel.CategoryAttribute("Behavior")]
1435         [System.ComponentModel.DefaultValueAttribute(false)]
1436         public bool EnableUpdate { get { throw null; } set { } }
1437         [System.ComponentModel.CategoryAttribute("Data")]
1438         [System.ComponentModel.DefaultValueAttribute("")]
1439         public string GroupBy { get { throw null; } set { } }
1440         [System.ComponentModel.BrowsableAttribute(false)]
1441         [System.ComponentModel.CategoryAttribute("Data")]
1442         [System.ComponentModel.DefaultValueAttribute(null)]
1443         [System.ComponentModel.MergablePropertyAttribute(false)]
1444         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1445         public System.Web.UI.WebControls.ParameterCollection GroupByParameters { get { throw null; } }
1446         [System.ComponentModel.BrowsableAttribute(false)]
1447         [System.ComponentModel.CategoryAttribute("Data")]
1448         [System.ComponentModel.DefaultValueAttribute(null)]
1449         [System.ComponentModel.MergablePropertyAttribute(false)]
1450         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1451         public System.Web.UI.WebControls.ParameterCollection InsertParameters { get { throw null; } }
1452         [System.ComponentModel.CategoryAttribute("Data")]
1453         [System.ComponentModel.DefaultValueAttribute("")]
1454         public string OrderBy { get { throw null; } set { } }
1455         [System.ComponentModel.BrowsableAttribute(false)]
1456         [System.ComponentModel.CategoryAttribute("Data")]
1457         [System.ComponentModel.DefaultValueAttribute(null)]
1458         [System.ComponentModel.MergablePropertyAttribute(false)]
1459         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1460         public System.Web.UI.WebControls.ParameterCollection OrderByParameters { get { throw null; } }
1461         [System.ComponentModel.CategoryAttribute("Data")]
1462         [System.ComponentModel.DefaultValueAttribute("")]
1463         public string OrderGroupsBy { get { throw null; } set { } }
1464         [System.ComponentModel.BrowsableAttribute(false)]
1465         [System.ComponentModel.CategoryAttribute("Data")]
1466         [System.ComponentModel.DefaultValueAttribute(null)]
1467         [System.ComponentModel.MergablePropertyAttribute(false)]
1468         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1469         public System.Web.UI.WebControls.ParameterCollection OrderGroupsByParameters { get { throw null; } }
1470         [System.ComponentModel.CategoryAttribute("Data")]
1471         [System.ComponentModel.DefaultValueAttribute("")]
1472         public string Select { get { throw null; } set { } }
1473         [System.ComponentModel.BrowsableAttribute(false)]
1474         [System.ComponentModel.CategoryAttribute("Data")]
1475         [System.ComponentModel.DefaultValueAttribute(null)]
1476         [System.ComponentModel.MergablePropertyAttribute(false)]
1477         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1478         public System.Web.UI.WebControls.ParameterCollection SelectParameters { get { throw null; } }
1479         [System.ComponentModel.CategoryAttribute("Behavior")]
1480         [System.ComponentModel.DefaultValueAttribute(true)]
1481         public bool StoreOriginalValuesInViewState { get { throw null; } set { } }
1482         [System.MonoTODOAttribute("looks like we need System.Web.Query.Dynamic stuff or alternative")]
1483         System.Type System.Web.DynamicData.IDynamicDataSource.ContextType { get { throw null; } set { } }
1484         string System.Web.DynamicData.IDynamicDataSource.EntitySetName { get { throw null; } set { } }
1485         [System.ComponentModel.CategoryAttribute("Data")]
1486         [System.ComponentModel.DefaultValueAttribute("")]
1487         public string TableName { get { throw null; } set { } }
1488         [System.ComponentModel.BrowsableAttribute(false)]
1489         [System.ComponentModel.CategoryAttribute("Data")]
1490         [System.ComponentModel.DefaultValueAttribute(null)]
1491         [System.ComponentModel.MergablePropertyAttribute(false)]
1492         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1493         public System.Web.UI.WebControls.ParameterCollection UpdateParameters { get { throw null; } }
1494         [System.ComponentModel.CategoryAttribute("Data")]
1495         [System.ComponentModel.DefaultValueAttribute("")]
1496         public string Where { get { throw null; } set { } }
1497         [System.ComponentModel.BrowsableAttribute(false)]
1498         [System.ComponentModel.CategoryAttribute("Data")]
1499         [System.ComponentModel.DefaultValueAttribute(null)]
1500         [System.ComponentModel.MergablePropertyAttribute(false)]
1501         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1502         public System.Web.UI.WebControls.ParameterCollection WhereParameters { get { throw null; } }
1503         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> ContextCreated { add { } remove { } }
1504         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceContextEventArgs> ContextCreating { add { } remove { } }
1505         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceDisposeEventArgs> ContextDisposing { add { } remove { } }
1506         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> Deleted { add { } remove { } }
1507         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceDeleteEventArgs> Deleting { add { } remove { } }
1508         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> Inserted { add { } remove { } }
1509         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceInsertEventArgs> Inserting { add { } remove { } }
1510         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> Selected { add { } remove { } }
1511         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceSelectEventArgs> Selecting { add { } remove { } }
1512         event System.EventHandler<System.Web.DynamicData.DynamicValidatorEventArgs> System.Web.DynamicData.IDynamicDataSource.Exception { add { } remove { } }
1513         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> Updated { add { } remove { } }
1514         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceUpdateEventArgs> Updating { add { } remove { } }
CreateQueryableView()1515         protected override System.Web.UI.WebControls.QueryableDataSourceView CreateQueryableView() { throw null; }
CreateView()1516         protected virtual System.Web.UI.WebControls.LinqDataSourceView CreateView() { throw null; }
Delete(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues)1517         public int Delete(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues) { throw null; }
Insert(System.Collections.IDictionary values)1518         public int Insert(System.Collections.IDictionary values) { throw null; }
OnInit(System.EventArgs e)1519         protected internal override void OnInit(System.EventArgs e) { }
OnUnload(System.EventArgs e)1520         protected internal override void OnUnload(System.EventArgs e) { }
Update(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues)1521         public int Update(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues) { throw null; }
1522     }
1523     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1524     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1525     public partial class LinqDataSourceContextEventArgs : System.EventArgs
1526     {
LinqDataSourceContextEventArgs()1527         public LinqDataSourceContextEventArgs() { }
LinqDataSourceContextEventArgs(System.Web.UI.DataSourceOperation operation)1528         public LinqDataSourceContextEventArgs(System.Web.UI.DataSourceOperation operation) { }
1529         public object ObjectInstance { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1530         public System.Web.UI.DataSourceOperation Operation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1531     }
1532     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1533     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1534     public partial class LinqDataSourceDeleteEventArgs : System.ComponentModel.CancelEventArgs
1535     {
LinqDataSourceDeleteEventArgs(object originalObject)1536         public LinqDataSourceDeleteEventArgs(object originalObject) { }
LinqDataSourceDeleteEventArgs(System.Web.UI.WebControls.LinqDataSourceValidationException exception)1537         public LinqDataSourceDeleteEventArgs(System.Web.UI.WebControls.LinqDataSourceValidationException exception) { }
1538         public System.Web.UI.WebControls.LinqDataSourceValidationException Exception { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1539         public bool ExceptionHandled { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1540         public object OriginalObject { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1541     }
1542     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1543     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1544     public partial class LinqDataSourceDisposeEventArgs : System.ComponentModel.CancelEventArgs
1545     {
LinqDataSourceDisposeEventArgs(object instance)1546         public LinqDataSourceDisposeEventArgs(object instance) { }
1547         public object ObjectInstance { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1548     }
1549     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1550     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1551     public partial class LinqDataSourceInsertEventArgs : System.ComponentModel.CancelEventArgs
1552     {
LinqDataSourceInsertEventArgs(object newObject)1553         public LinqDataSourceInsertEventArgs(object newObject) { }
LinqDataSourceInsertEventArgs(System.Web.UI.WebControls.LinqDataSourceValidationException exception)1554         public LinqDataSourceInsertEventArgs(System.Web.UI.WebControls.LinqDataSourceValidationException exception) { }
1555         public System.Web.UI.WebControls.LinqDataSourceValidationException Exception { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1556         public bool ExceptionHandled { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1557         public object NewObject { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1558     }
1559     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1560     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1561     public partial class LinqDataSourceSelectEventArgs : System.ComponentModel.CancelEventArgs
1562     {
LinqDataSourceSelectEventArgs(System.Web.UI.DataSourceSelectArguments arguments, System.Collections.Generic.IDictionary<string, object> whereParameters, System.Collections.Specialized.IOrderedDictionary orderByParameters, System.Collections.Generic.IDictionary<string, object> groupByParameters, System.Collections.Generic.IDictionary<string, object> orderGroupsByParameters, System.Collections.Generic.IDictionary<string, object> selectParameters)1563         public LinqDataSourceSelectEventArgs(System.Web.UI.DataSourceSelectArguments arguments, System.Collections.Generic.IDictionary<string, object> whereParameters, System.Collections.Specialized.IOrderedDictionary orderByParameters, System.Collections.Generic.IDictionary<string, object> groupByParameters, System.Collections.Generic.IDictionary<string, object> orderGroupsByParameters, System.Collections.Generic.IDictionary<string, object> selectParameters) { }
1564         public System.Web.UI.DataSourceSelectArguments Arguments { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1565         public System.Collections.Generic.IDictionary<string, object> GroupByParameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1566         public System.Collections.Specialized.IOrderedDictionary OrderByParameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1567         public System.Collections.Generic.IDictionary<string, object> OrderGroupsByParameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1568         public object Result { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1569         public System.Collections.Generic.IDictionary<string, object> SelectParameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1570         public System.Collections.Generic.IDictionary<string, object> WhereParameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1571     }
1572     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1573     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1574     public partial class LinqDataSourceStatusEventArgs : System.EventArgs
1575     {
LinqDataSourceStatusEventArgs(System.Exception exception)1576         public LinqDataSourceStatusEventArgs(System.Exception exception) { }
LinqDataSourceStatusEventArgs(object result)1577         public LinqDataSourceStatusEventArgs(object result) { }
LinqDataSourceStatusEventArgs(object result, int totalRowCount)1578         public LinqDataSourceStatusEventArgs(object result, int totalRowCount) { }
1579         public System.Exception Exception { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1580         public bool ExceptionHandled { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1581         public object Result { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1582         public int TotalRowCount { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1583     }
1584     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1585     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1586     public partial class LinqDataSourceUpdateEventArgs : System.ComponentModel.CancelEventArgs
1587     {
LinqDataSourceUpdateEventArgs(object originalObject, object newObject)1588         public LinqDataSourceUpdateEventArgs(object originalObject, object newObject) { }
LinqDataSourceUpdateEventArgs(System.Web.UI.WebControls.LinqDataSourceValidationException exception)1589         public LinqDataSourceUpdateEventArgs(System.Web.UI.WebControls.LinqDataSourceValidationException exception) { }
1590         public System.Web.UI.WebControls.LinqDataSourceValidationException Exception { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1591         public bool ExceptionHandled { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1592         public object NewObject { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1593         public object OriginalObject { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1594     }
1595     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1596     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1597     [System.SerializableAttribute]
1598     public partial class LinqDataSourceValidationException : System.Exception, System.Runtime.Serialization.ISerializable, System.Web.DynamicData.IDynamicValidatorException
1599     {
LinqDataSourceValidationException()1600         public LinqDataSourceValidationException() { }
1601         [System.MonoTODOAttribute]
LinqDataSourceValidationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1602         protected LinqDataSourceValidationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
LinqDataSourceValidationException(string message)1603         public LinqDataSourceValidationException(string message) { }
LinqDataSourceValidationException(string message, System.Collections.Generic.IDictionary<string, System.Exception> innerExceptions)1604         public LinqDataSourceValidationException(string message, System.Collections.Generic.IDictionary<string, System.Exception> innerExceptions) { }
LinqDataSourceValidationException(string message, System.Exception innerException)1605         public LinqDataSourceValidationException(string message, System.Exception innerException) { }
1606         public System.Collections.Generic.IDictionary<string, System.Exception> InnerExceptions { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1607         [System.MonoTODOAttribute]
1608         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128))]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1609         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
1610     }
1611     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1612     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
1613     public partial class LinqDataSourceView : System.Web.UI.WebControls.ContextDataSourceView
1614     {
LinqDataSourceView(System.Web.UI.WebControls.LinqDataSource owner, string name, System.Web.HttpContext context)1615         public LinqDataSourceView(System.Web.UI.WebControls.LinqDataSource owner, string name, System.Web.HttpContext context) : base (default(System.Web.UI.DataSourceControl), default(string), default(System.Web.HttpContext)) { }
1616         public override bool CanDelete { get { throw null; } }
1617         public override bool CanInsert { get { throw null; } }
1618         public override bool CanPage { get { throw null; } }
1619         public override bool CanRetrieveTotalRowCount { get { throw null; } }
1620         public override bool CanSort { get { throw null; } }
1621         public override bool CanUpdate { get { throw null; } }
1622         public override System.Type ContextType { get { throw null; } }
1623         public override string ContextTypeName { get { throw null; } set { } }
1624         [System.MonoTODOAttribute]
1625         public bool EnableDelete { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1626         [System.MonoTODOAttribute]
1627         public bool EnableInsert { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1628         [System.MonoTODOAttribute]
1629         public bool EnableObjectTracking { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1630         [System.MonoTODOAttribute]
1631         public bool EnableUpdate { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1632         [System.MonoTODOAttribute]
1633         public bool StoreOriginalValuesInViewState { get { throw null; } set { } }
1634         [System.MonoTODOAttribute]
1635         public string TableName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1636         [System.MonoTODOAttribute]
1637         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> ContextCreated { add { } remove { } }
1638         [System.MonoTODOAttribute]
1639         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceContextEventArgs> ContextCreating { add { } remove { } }
1640         [System.MonoTODOAttribute]
1641         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceDisposeEventArgs> ContextDisposing { add { } remove { } }
1642         [System.MonoTODOAttribute]
1643         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> Deleted { add { } remove { } }
1644         [System.MonoTODOAttribute]
1645         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceDeleteEventArgs> Deleting { add { } remove { } }
1646         [System.MonoTODOAttribute]
1647         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> Inserted { add { } remove { } }
1648         [System.MonoTODOAttribute]
1649         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceInsertEventArgs> Inserting { add { } remove { } }
1650         [System.MonoTODOAttribute]
1651         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> Selected { add { } remove { } }
1652         [System.MonoTODOAttribute]
1653         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceSelectEventArgs> Selecting { add { } remove { } }
1654         [System.MonoTODOAttribute]
1655         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> Updated { add { } remove { } }
1656         [System.MonoTODOAttribute]
1657         public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceUpdateEventArgs> Updating { add { } remove { } }
CreateContext(System.Type contextType)1658         protected virtual object CreateContext(System.Type contextType) { throw null; }
CreateContext(System.Web.UI.DataSourceOperation operation)1659         protected override System.Web.UI.WebControls.ContextDataSourceContextData CreateContext(System.Web.UI.DataSourceOperation operation) { throw null; }
DeleteDataObject(object dataContext, object table, object oldDataObject)1660         protected virtual void DeleteDataObject(object dataContext, object table, object oldDataObject) { }
DeleteObject(object oldEntity)1661         protected override int DeleteObject(object oldEntity) { throw null; }
DisposeContext(object dataContext)1662         protected override void DisposeContext(object dataContext) { }
1663         [System.MonoTODOAttribute]
ExecuteDelete(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues)1664         protected override int ExecuteDelete(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues) { throw null; }
ExecuteInsert(System.Collections.IDictionary values)1665         protected override int ExecuteInsert(System.Collections.IDictionary values) { throw null; }
1666         [System.MonoTODOAttribute]
ExecuteSelect(System.Web.UI.DataSourceSelectArguments arguments)1667         protected internal override System.Collections.IEnumerable ExecuteSelect(System.Web.UI.DataSourceSelectArguments arguments) { throw null; }
1668         [System.MonoTODOAttribute]
ExecuteUpdate(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues)1669         protected override int ExecuteUpdate(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues) { throw null; }
GetSource(System.Web.UI.WebControls.QueryContext context)1670         protected override object GetSource(System.Web.UI.WebControls.QueryContext context) { throw null; }
GetTableMemberInfo(System.Type contextType)1671         protected virtual System.Reflection.MemberInfo GetTableMemberInfo(System.Type contextType) { throw null; }
HandleValidationErrors(System.Collections.Generic.IDictionary<string, System.Exception> errors, System.Web.UI.DataSourceOperation operation)1672         protected override void HandleValidationErrors(System.Collections.Generic.IDictionary<string, System.Exception> errors, System.Web.UI.DataSourceOperation operation) { }
InsertDataObject(object dataContext, object table, object newDataObject)1673         protected virtual void InsertDataObject(object dataContext, object table, object newDataObject) { }
InsertObject(object newEntity)1674         protected override int InsertObject(object newEntity) { throw null; }
OnContextCreated(System.Web.UI.WebControls.LinqDataSourceStatusEventArgs e)1675         protected virtual void OnContextCreated(System.Web.UI.WebControls.LinqDataSourceStatusEventArgs e) { }
OnContextCreating(System.Web.UI.WebControls.LinqDataSourceContextEventArgs e)1676         protected virtual void OnContextCreating(System.Web.UI.WebControls.LinqDataSourceContextEventArgs e) { }
OnContextDisposing(System.Web.UI.WebControls.LinqDataSourceDisposeEventArgs e)1677         protected virtual void OnContextDisposing(System.Web.UI.WebControls.LinqDataSourceDisposeEventArgs e) { }
OnDeleted(System.Web.UI.WebControls.LinqDataSourceStatusEventArgs e)1678         protected virtual void OnDeleted(System.Web.UI.WebControls.LinqDataSourceStatusEventArgs e) { }
OnDeleting(System.Web.UI.WebControls.LinqDataSourceDeleteEventArgs e)1679         protected virtual void OnDeleting(System.Web.UI.WebControls.LinqDataSourceDeleteEventArgs e) { }
OnException(System.Web.DynamicData.DynamicValidatorEventArgs e)1680         protected virtual void OnException(System.Web.DynamicData.DynamicValidatorEventArgs e) { }
OnInserted(System.Web.UI.WebControls.LinqDataSourceStatusEventArgs e)1681         protected virtual void OnInserted(System.Web.UI.WebControls.LinqDataSourceStatusEventArgs e) { }
OnInserting(System.Web.UI.WebControls.LinqDataSourceInsertEventArgs e)1682         protected virtual void OnInserting(System.Web.UI.WebControls.LinqDataSourceInsertEventArgs e) { }
OnSelected(System.Web.UI.WebControls.LinqDataSourceStatusEventArgs e)1683         protected virtual void OnSelected(System.Web.UI.WebControls.LinqDataSourceStatusEventArgs e) { }
OnSelecting(System.Web.UI.WebControls.LinqDataSourceSelectEventArgs e)1684         protected virtual void OnSelecting(System.Web.UI.WebControls.LinqDataSourceSelectEventArgs e) { }
OnUpdated(System.Web.UI.WebControls.LinqDataSourceStatusEventArgs e)1685         protected virtual void OnUpdated(System.Web.UI.WebControls.LinqDataSourceStatusEventArgs e) { }
OnUpdating(System.Web.UI.WebControls.LinqDataSourceUpdateEventArgs e)1686         protected virtual void OnUpdating(System.Web.UI.WebControls.LinqDataSourceUpdateEventArgs e) { }
1687         [System.MonoTODOAttribute]
ResetDataObject(object table, object dataObject)1688         protected virtual void ResetDataObject(object table, object dataObject) { }
Select(System.Web.UI.DataSourceSelectArguments arguments)1689         public System.Collections.IEnumerable Select(System.Web.UI.DataSourceSelectArguments arguments) { throw null; }
StoreOriginalValues(System.Collections.IList results)1690         protected override void StoreOriginalValues(System.Collections.IList results) { }
UpdateDataObject(object dataContext, object table, object oldDataObject, object newDataObject)1691         protected virtual void UpdateDataObject(object dataContext, object table, object oldDataObject, object newDataObject) { }
UpdateObject(object oldEntity, object newEntity)1692         protected override int UpdateObject(object oldEntity, object newEntity) { throw null; }
1693         [System.MonoTODOAttribute]
ValidateContextType(System.Type contextType, bool selecting)1694         protected virtual void ValidateContextType(System.Type contextType, bool selecting) { }
1695         [System.MonoTODOAttribute]
ValidateDeleteSupported(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues)1696         protected virtual void ValidateDeleteSupported(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues) { }
ValidateEditSupported()1697         protected virtual void ValidateEditSupported() { }
1698         [System.MonoTODOAttribute]
ValidateInsertSupported(System.Collections.IDictionary values)1699         protected virtual void ValidateInsertSupported(System.Collections.IDictionary values) { }
1700         [System.MonoTODOAttribute]
ValidateTableType(System.Type tableType, bool selecting)1701         protected virtual void ValidateTableType(System.Type tableType, bool selecting) { }
1702         [System.MonoTODOAttribute]
ValidateUpdateSupported(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues)1703         protected virtual void ValidateUpdateSupported(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues) { }
1704     }
1705     [System.ComponentModel.DefaultEventAttribute("SelectedIndexChanged")]
1706     [System.ComponentModel.DefaultPropertyAttribute("SelectedValue")]
1707     [System.ComponentModel.DesignerAttribute("System.Web.UI.Design.WebControls.ListViewDesigner, System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
1708     [System.ComponentModel.ToolboxItemFilterAttribute("System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", (System.ComponentModel.ToolboxItemFilterType)(3))]
1709     [System.Drawing.ToolboxBitmapAttribute(typeof(System.Web.UI.WebControls.ListView), "ListView.ico")]
1710     [System.Web.UI.ControlValuePropertyAttribute("SelectedValue")]
1711     [System.Web.UI.SupportsEventValidationAttribute]
1712     public partial class ListView : System.Web.UI.WebControls.DataBoundControl, System.Web.UI.IDataKeysControl, System.Web.UI.INamingContainer, System.Web.UI.WebControls.IDataBoundControl, System.Web.UI.WebControls.IDataBoundListControl, System.Web.UI.WebControls.IPageableItemContainer, System.Web.UI.WebControls.IPersistedSelector
1713     {
ListView()1714         public ListView() { }
1715         [System.ComponentModel.BrowsableAttribute(false)]
1716         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1717         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1718         public override string AccessKey { get { throw null; } set { } }
1719         [System.ComponentModel.BrowsableAttribute(false)]
1720         [System.ComponentModel.DefaultValueAttribute("")]
1721         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1722         [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListViewDataItem), (System.ComponentModel.BindingDirection)(1))]
1723         public virtual System.Web.UI.ITemplate AlternatingItemTemplate { get { throw null; } set { } }
1724         [System.ComponentModel.BrowsableAttribute(false)]
1725         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1726         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1727         public override System.Drawing.Color BackColor { get { throw null; } set { } }
1728         [System.ComponentModel.BrowsableAttribute(false)]
1729         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1730         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1731         public override System.Drawing.Color BorderColor { get { throw null; } set { } }
1732         [System.ComponentModel.BrowsableAttribute(false)]
1733         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1734         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1735         public override System.Web.UI.WebControls.BorderStyle BorderStyle { get { throw null; } set { } }
1736         [System.ComponentModel.BrowsableAttribute(false)]
1737         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1738         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1739         public override System.Web.UI.WebControls.Unit BorderWidth { get { throw null; } set { } }
1740         public virtual string[] ClientIDRowSuffix { get { throw null; } set { } }
1741         public System.Web.UI.WebControls.DataKeyArray ClientIDRowSuffixDataKeys { get { throw null; } }
1742         public override System.Web.UI.ControlCollection Controls { get { throw null; } }
1743         [System.ComponentModel.CategoryAttribute("Behavior")]
1744         [System.ComponentModel.DefaultValueAttribute(true)]
1745         public virtual bool ConvertEmptyStringToNull { get { throw null; } set { } }
1746         [System.ComponentModel.BrowsableAttribute(false)]
1747         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1748         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1749         [System.Web.UI.CssClassPropertyAttribute]
1750         public override string CssClass { get { throw null; } set { } }
1751         [System.ComponentModel.CategoryAttribute("Data")]
1752         [System.ComponentModel.DefaultValueAttribute("")]
1753         [System.ComponentModel.EditorAttribute("System.Web.UI.Design.WebControls.DataFieldEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))]
1754         [System.ComponentModel.TypeConverterAttribute(typeof(System.Web.UI.WebControls.StringArrayConverter))]
1755         public virtual string[] DataKeyNames { get { throw null; } set { } }
1756         [System.ComponentModel.BrowsableAttribute(false)]
1757         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1758         public virtual System.Web.UI.WebControls.DataKeyArray DataKeys { get { throw null; } }
1759         public virtual string DeleteMethod { get { throw null; } set { } }
1760         [System.ComponentModel.CategoryAttribute("Default")]
1761         [System.ComponentModel.DefaultValueAttribute(-1)]
1762         public virtual int EditIndex { get { throw null; } set { } }
1763         [System.ComponentModel.BrowsableAttribute(false)]
1764         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1765         public virtual System.Web.UI.WebControls.ListViewItem EditItem { get { throw null; } }
1766         [System.ComponentModel.BrowsableAttribute(false)]
1767         [System.ComponentModel.DefaultValueAttribute("")]
1768         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1769         [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListViewDataItem), (System.ComponentModel.BindingDirection)(1))]
1770         public virtual System.Web.UI.ITemplate EditItemTemplate { get { throw null; } set { } }
1771         [System.ComponentModel.BrowsableAttribute(false)]
1772         [System.ComponentModel.DefaultValueAttribute("")]
1773         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1774         [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListView))]
1775         public virtual System.Web.UI.ITemplate EmptyDataTemplate { get { throw null; } set { } }
1776         [System.ComponentModel.BrowsableAttribute(false)]
1777         [System.ComponentModel.DefaultValueAttribute("")]
1778         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1779         [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListViewItem))]
1780         public virtual System.Web.UI.ITemplate EmptyItemTemplate { get { throw null; } set { } }
1781         [System.ComponentModel.DefaultValueAttribute(false)]
1782         [System.MonoTODOAttribute("Figure out where it is used and what's the effect of setting it to true.")]
1783         public virtual bool EnableModelValidation { get { throw null; } set { } }
1784         public virtual bool EnablePersistedSelection { get { throw null; } set { } }
1785         [System.ComponentModel.BrowsableAttribute(false)]
1786         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1787         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1788         public override System.Web.UI.WebControls.FontInfo Font { get { throw null; } }
1789         [System.ComponentModel.BrowsableAttribute(false)]
1790         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1791         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1792         public override System.Drawing.Color ForeColor { get { throw null; } set { } }
1793         [System.ComponentModel.CategoryAttribute("Default")]
1794         [System.ComponentModel.DefaultValueAttribute(1)]
1795         public virtual int GroupItemCount { get { throw null; } set { } }
1796         [System.ComponentModel.CategoryAttribute("Behavior")]
1797         [System.ComponentModel.DefaultValueAttribute("groupPlaceholder")]
1798         public virtual string GroupPlaceholderID { get { throw null; } set { } }
1799         [System.ComponentModel.BrowsableAttribute(false)]
1800         [System.ComponentModel.DefaultValueAttribute("")]
1801         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1802         [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListViewItem))]
1803         public virtual System.Web.UI.ITemplate GroupSeparatorTemplate { get { throw null; } set { } }
1804         [System.ComponentModel.BrowsableAttribute(false)]
1805         [System.ComponentModel.DefaultValueAttribute("")]
1806         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1807         [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListViewItem))]
1808         public virtual System.Web.UI.ITemplate GroupTemplate { get { throw null; } set { } }
1809         [System.ComponentModel.BrowsableAttribute(false)]
1810         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1811         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1812         public override System.Web.UI.WebControls.Unit Height { get { throw null; } set { } }
1813         [System.ComponentModel.BrowsableAttribute(false)]
1814         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1815         public virtual System.Web.UI.WebControls.ListViewItem InsertItem { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1816         [System.ComponentModel.CategoryAttribute("Default")]
1817         [System.ComponentModel.DefaultValueAttribute((System.Web.UI.WebControls.InsertItemPosition)(0))]
1818         public virtual System.Web.UI.WebControls.InsertItemPosition InsertItemPosition { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1819         [System.ComponentModel.BrowsableAttribute(false)]
1820         [System.ComponentModel.DefaultValueAttribute("")]
1821         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1822         [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListViewItem), (System.ComponentModel.BindingDirection)(1))]
1823         public virtual System.Web.UI.ITemplate InsertItemTemplate { get { throw null; } set { } }
1824         public virtual string InsertMethod { get { throw null; } set { } }
1825         protected override bool IsUsingModelBinders { get { throw null; } }
1826         [System.ComponentModel.CategoryAttribute("Behavior")]
1827         [System.ComponentModel.DefaultValueAttribute("itemPlaceholder")]
1828         public virtual string ItemPlaceholderID { get { throw null; } set { } }
1829         [System.ComponentModel.BrowsableAttribute(false)]
1830         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1831         public virtual System.Collections.Generic.IList<System.Web.UI.WebControls.ListViewDataItem> Items { get { throw null; } }
1832         [System.ComponentModel.BrowsableAttribute(false)]
1833         [System.ComponentModel.DefaultValueAttribute("")]
1834         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1835         [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListViewItem))]
1836         public virtual System.Web.UI.ITemplate ItemSeparatorTemplate { get { throw null; } set { } }
1837         [System.ComponentModel.BrowsableAttribute(false)]
1838         [System.ComponentModel.DefaultValueAttribute("")]
1839         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1840         [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListViewDataItem), (System.ComponentModel.BindingDirection)(1))]
1841         public virtual System.Web.UI.ITemplate ItemTemplate { get { throw null; } set { } }
1842         [System.ComponentModel.BrowsableAttribute(false)]
1843         [System.ComponentModel.DefaultValueAttribute("")]
1844         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1845         [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListView))]
1846         public virtual System.Web.UI.ITemplate LayoutTemplate { get { throw null; } set { } }
1847         protected virtual int MaximumRows { get { throw null; } }
1848         [System.ComponentModel.BrowsableAttribute(false)]
1849         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1850         public virtual System.Web.UI.WebControls.DataKey SelectedDataKey { get { throw null; } }
1851         [System.ComponentModel.CategoryAttribute("Default")]
1852         [System.ComponentModel.DefaultValueAttribute(-1)]
1853         public virtual int SelectedIndex { get { throw null; } set { } }
1854         [System.ComponentModel.BrowsableAttribute(false)]
1855         [System.ComponentModel.DefaultValueAttribute("")]
1856         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1857         [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListViewDataItem), (System.ComponentModel.BindingDirection)(1))]
1858         public virtual System.Web.UI.ITemplate SelectedItemTemplate { get { throw null; } set { } }
1859         [System.ComponentModel.BrowsableAttribute(false)]
1860         public virtual System.Web.UI.WebControls.DataKey SelectedPersistedDataKey { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1861         [System.ComponentModel.BrowsableAttribute(false)]
1862         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1863         public object SelectedValue { get { throw null; } }
1864         [System.ComponentModel.BrowsableAttribute(false)]
1865         [System.ComponentModel.DefaultValueAttribute((System.Web.UI.WebControls.SortDirection)(0))]
1866         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1867         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
1868         public virtual System.Web.UI.WebControls.SortDirection SortDirection { get { throw null; } }
1869         [System.ComponentModel.BrowsableAttribute(false)]
1870         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1871         public virtual string SortExpression { get { throw null; } }
1872         protected virtual int StartRowIndex { get { throw null; } }
1873         System.Web.UI.WebControls.DataKeyArray System.Web.UI.IDataKeysControl.ClientIDRowSuffixDataKeys { get { throw null; } }
1874         string[] System.Web.UI.WebControls.IDataBoundControl.DataKeyNames { get { throw null; } set { } }
1875         string System.Web.UI.WebControls.IDataBoundControl.DataMember { get { throw null; } set { } }
1876         object System.Web.UI.WebControls.IDataBoundControl.DataSource { get { throw null; } set { } }
1877         string System.Web.UI.WebControls.IDataBoundControl.DataSourceID { get { throw null; } set { } }
1878         System.Web.UI.IDataSource System.Web.UI.WebControls.IDataBoundControl.DataSourceObject { get { throw null; } }
1879         string[] System.Web.UI.WebControls.IDataBoundListControl.ClientIDRowSuffix { get { throw null; } set { } }
1880         System.Web.UI.WebControls.DataKeyArray System.Web.UI.WebControls.IDataBoundListControl.DataKeys { get { throw null; } }
1881         bool System.Web.UI.WebControls.IDataBoundListControl.EnablePersistedSelection { get { throw null; } set { } }
1882         System.Web.UI.WebControls.DataKey System.Web.UI.WebControls.IDataBoundListControl.SelectedDataKey { get { throw null; } }
1883         int System.Web.UI.WebControls.IDataBoundListControl.SelectedIndex { get { throw null; } set { } }
1884         int System.Web.UI.WebControls.IPageableItemContainer.MaximumRows { get { throw null; } }
1885         int System.Web.UI.WebControls.IPageableItemContainer.StartRowIndex { get { throw null; } }
1886         System.Web.UI.WebControls.DataKey System.Web.UI.WebControls.IPersistedSelector.DataKey { get { throw null; } set { } }
1887         [System.ComponentModel.BrowsableAttribute(false)]
1888         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1889         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1890         public override short TabIndex { get { throw null; } set { } }
1891         [System.ComponentModel.BrowsableAttribute(false)]
1892         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1893         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1894         public override string ToolTip { get { throw null; } set { } }
1895         public virtual string UpdateMethod { get { throw null; } set { } }
1896         [System.ComponentModel.BrowsableAttribute(false)]
1897         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1898         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1899         public override System.Web.UI.WebControls.Unit Width { get { throw null; } set { } }
1900         [System.ComponentModel.CategoryAttribute("Action")]
1901         public event System.EventHandler<System.Web.UI.WebControls.ListViewCancelEventArgs> ItemCanceling { add { } remove { } }
1902         [System.ComponentModel.CategoryAttribute("Action")]
1903         public event System.EventHandler<System.Web.UI.WebControls.ListViewCommandEventArgs> ItemCommand { add { } remove { } }
1904         [System.ComponentModel.CategoryAttribute("Behavior")]
1905         public event System.EventHandler<System.Web.UI.WebControls.ListViewItemEventArgs> ItemCreated { add { } remove { } }
1906         [System.ComponentModel.CategoryAttribute("Data")]
1907         public event System.EventHandler<System.Web.UI.WebControls.ListViewItemEventArgs> ItemDataBound { add { } remove { } }
1908         [System.ComponentModel.CategoryAttribute("Action")]
1909         public event System.EventHandler<System.Web.UI.WebControls.ListViewDeletedEventArgs> ItemDeleted { add { } remove { } }
1910         [System.ComponentModel.CategoryAttribute("Action")]
1911         public event System.EventHandler<System.Web.UI.WebControls.ListViewDeleteEventArgs> ItemDeleting { add { } remove { } }
1912         [System.ComponentModel.CategoryAttribute("Action")]
1913         public event System.EventHandler<System.Web.UI.WebControls.ListViewEditEventArgs> ItemEditing { add { } remove { } }
1914         [System.ComponentModel.CategoryAttribute("Action")]
1915         public event System.EventHandler<System.Web.UI.WebControls.ListViewInsertedEventArgs> ItemInserted { add { } remove { } }
1916         [System.ComponentModel.CategoryAttribute("Action")]
1917         public event System.EventHandler<System.Web.UI.WebControls.ListViewInsertEventArgs> ItemInserting { add { } remove { } }
1918         [System.ComponentModel.CategoryAttribute("Action")]
1919         public event System.EventHandler<System.Web.UI.WebControls.ListViewUpdatedEventArgs> ItemUpdated { add { } remove { } }
1920         [System.ComponentModel.CategoryAttribute("Action")]
1921         public event System.EventHandler<System.Web.UI.WebControls.ListViewUpdateEventArgs> ItemUpdating { add { } remove { } }
1922         [System.ComponentModel.CategoryAttribute("Behavior")]
1923         public event System.EventHandler LayoutCreated { add { } remove { } }
1924         [System.ComponentModel.CategoryAttribute("Behavior")]
1925         public event System.EventHandler PagePropertiesChanged { add { } remove { } }
1926         [System.ComponentModel.CategoryAttribute("Behavior")]
1927         public event System.EventHandler<System.Web.UI.WebControls.PagePropertiesChangingEventArgs> PagePropertiesChanging { add { } remove { } }
1928         [System.ComponentModel.CategoryAttribute("Action")]
1929         public event System.EventHandler SelectedIndexChanged { add { } remove { } }
1930         [System.ComponentModel.CategoryAttribute("Action")]
1931         public event System.EventHandler<System.Web.UI.WebControls.ListViewSelectEventArgs> SelectedIndexChanging { add { } remove { } }
1932         [System.ComponentModel.CategoryAttribute("Action")]
1933         public event System.EventHandler Sorted { add { } remove { } }
1934         [System.ComponentModel.CategoryAttribute("Action")]
1935         public event System.EventHandler<System.Web.UI.WebControls.ListViewSortEventArgs> Sorting { add { } remove { } }
1936         event System.EventHandler<System.Web.UI.WebControls.PageEventArgs> System.Web.UI.WebControls.IPageableItemContainer.TotalRowCountAvailable { add { } remove { } }
AddControlToContainer(System.Web.UI.Control control, System.Web.UI.Control container, int addLocation)1937         protected virtual void AddControlToContainer(System.Web.UI.Control control, System.Web.UI.Control container, int addLocation) { }
CreateChildControls()1938         protected internal override void CreateChildControls() { }
CreateChildControls(System.Collections.IEnumerable dataSource, bool dataBinding)1939         protected virtual int CreateChildControls(System.Collections.IEnumerable dataSource, bool dataBinding) { throw null; }
CreateControlStyle()1940         protected override System.Web.UI.WebControls.Style CreateControlStyle() { throw null; }
CreateDataItem(int dataItemIndex, int displayIndex)1941         protected virtual System.Web.UI.WebControls.ListViewDataItem CreateDataItem(int dataItemIndex, int displayIndex) { throw null; }
CreateDataSourceSelectArguments()1942         protected override System.Web.UI.DataSourceSelectArguments CreateDataSourceSelectArguments() { throw null; }
CreateEmptyDataItem()1943         protected virtual void CreateEmptyDataItem() { }
CreateEmptyItem()1944         protected virtual System.Web.UI.WebControls.ListViewItem CreateEmptyItem() { throw null; }
CreateInsertItem()1945         protected virtual System.Web.UI.WebControls.ListViewItem CreateInsertItem() { throw null; }
CreateItem(System.Web.UI.WebControls.ListViewItemType itemType)1946         protected virtual System.Web.UI.WebControls.ListViewItem CreateItem(System.Web.UI.WebControls.ListViewItemType itemType) { throw null; }
CreateItemsInGroups(System.Web.UI.WebControls.ListViewPagedDataSource dataSource, bool dataBinding, System.Web.UI.WebControls.InsertItemPosition insertPosition, System.Collections.ArrayList keyArray)1947         protected virtual System.Collections.Generic.IList<System.Web.UI.WebControls.ListViewDataItem> CreateItemsInGroups(System.Web.UI.WebControls.ListViewPagedDataSource dataSource, bool dataBinding, System.Web.UI.WebControls.InsertItemPosition insertPosition, System.Collections.ArrayList keyArray) { throw null; }
CreateItemsWithoutGroups(System.Web.UI.WebControls.ListViewPagedDataSource dataSource, bool dataBinding, System.Web.UI.WebControls.InsertItemPosition insertPosition, System.Collections.ArrayList keyArray)1948         protected virtual System.Collections.Generic.IList<System.Web.UI.WebControls.ListViewDataItem> CreateItemsWithoutGroups(System.Web.UI.WebControls.ListViewPagedDataSource dataSource, bool dataBinding, System.Web.UI.WebControls.InsertItemPosition insertPosition, System.Collections.ArrayList keyArray) { throw null; }
CreateLayoutTemplate()1949         protected virtual void CreateLayoutTemplate() { }
CreateSuffixArrayList(System.Web.UI.WebControls.ListViewPagedDataSource dataSource, System.Collections.ArrayList suffixArray)1950         protected virtual void CreateSuffixArrayList(System.Web.UI.WebControls.ListViewPagedDataSource dataSource, System.Collections.ArrayList suffixArray) { }
DeleteItem(int itemIndex)1951         public virtual void DeleteItem(int itemIndex) { }
EnsureLayoutTemplate()1952         protected virtual void EnsureLayoutTemplate() { }
ExtractItemValues(System.Collections.Specialized.IOrderedDictionary itemValues, System.Web.UI.WebControls.ListViewItem item, bool includePrimaryKey)1953         public virtual void ExtractItemValues(System.Collections.Specialized.IOrderedDictionary itemValues, System.Web.UI.WebControls.ListViewItem item, bool includePrimaryKey) { }
FindPlaceholder(string containerID, System.Web.UI.Control container)1954         protected virtual System.Web.UI.Control FindPlaceholder(string containerID, System.Web.UI.Control container) { throw null; }
InsertNewItem(bool causesValidation)1955         public virtual void InsertNewItem(bool causesValidation) { }
InstantiateEmptyDataTemplate(System.Web.UI.Control container)1956         protected virtual void InstantiateEmptyDataTemplate(System.Web.UI.Control container) { }
InstantiateEmptyItemTemplate(System.Web.UI.Control container)1957         protected virtual void InstantiateEmptyItemTemplate(System.Web.UI.Control container) { }
InstantiateGroupSeparatorTemplate(System.Web.UI.Control container)1958         protected virtual void InstantiateGroupSeparatorTemplate(System.Web.UI.Control container) { }
InstantiateGroupTemplate(System.Web.UI.Control container)1959         protected virtual void InstantiateGroupTemplate(System.Web.UI.Control container) { }
InstantiateInsertItemTemplate(System.Web.UI.Control container)1960         protected virtual void InstantiateInsertItemTemplate(System.Web.UI.Control container) { }
InstantiateItemSeparatorTemplate(System.Web.UI.Control container)1961         protected virtual void InstantiateItemSeparatorTemplate(System.Web.UI.Control container) { }
InstantiateItemTemplate(System.Web.UI.Control container, int displayIndex)1962         protected virtual void InstantiateItemTemplate(System.Web.UI.Control container, int displayIndex) { }
LoadControlState(object savedState)1963         protected internal override void LoadControlState(object savedState) { }
LoadViewState(object savedState)1964         protected override void LoadViewState(object savedState) { }
OnBubbleEvent(object source, System.EventArgs e)1965         protected override bool OnBubbleEvent(object source, System.EventArgs e) { throw null; }
OnInit(System.EventArgs e)1966         protected internal override void OnInit(System.EventArgs e) { }
OnItemCanceling(System.Web.UI.WebControls.ListViewCancelEventArgs e)1967         protected virtual void OnItemCanceling(System.Web.UI.WebControls.ListViewCancelEventArgs e) { }
OnItemCommand(System.Web.UI.WebControls.ListViewCommandEventArgs e)1968         protected virtual void OnItemCommand(System.Web.UI.WebControls.ListViewCommandEventArgs e) { }
OnItemCreated(System.Web.UI.WebControls.ListViewItemEventArgs e)1969         protected virtual void OnItemCreated(System.Web.UI.WebControls.ListViewItemEventArgs e) { }
OnItemDataBound(System.Web.UI.WebControls.ListViewItemEventArgs e)1970         protected virtual void OnItemDataBound(System.Web.UI.WebControls.ListViewItemEventArgs e) { }
OnItemDeleted(System.Web.UI.WebControls.ListViewDeletedEventArgs e)1971         protected virtual void OnItemDeleted(System.Web.UI.WebControls.ListViewDeletedEventArgs e) { }
OnItemDeleting(System.Web.UI.WebControls.ListViewDeleteEventArgs e)1972         protected virtual void OnItemDeleting(System.Web.UI.WebControls.ListViewDeleteEventArgs e) { }
OnItemEditing(System.Web.UI.WebControls.ListViewEditEventArgs e)1973         protected virtual void OnItemEditing(System.Web.UI.WebControls.ListViewEditEventArgs e) { }
OnItemInserted(System.Web.UI.WebControls.ListViewInsertedEventArgs e)1974         protected virtual void OnItemInserted(System.Web.UI.WebControls.ListViewInsertedEventArgs e) { }
OnItemInserting(System.Web.UI.WebControls.ListViewInsertEventArgs e)1975         protected virtual void OnItemInserting(System.Web.UI.WebControls.ListViewInsertEventArgs e) { }
OnItemUpdated(System.Web.UI.WebControls.ListViewUpdatedEventArgs e)1976         protected virtual void OnItemUpdated(System.Web.UI.WebControls.ListViewUpdatedEventArgs e) { }
OnItemUpdating(System.Web.UI.WebControls.ListViewUpdateEventArgs e)1977         protected virtual void OnItemUpdating(System.Web.UI.WebControls.ListViewUpdateEventArgs e) { }
OnLayoutCreated(System.EventArgs e)1978         protected virtual void OnLayoutCreated(System.EventArgs e) { }
OnPagePropertiesChanged(System.EventArgs e)1979         protected virtual void OnPagePropertiesChanged(System.EventArgs e) { }
OnPagePropertiesChanging(System.Web.UI.WebControls.PagePropertiesChangingEventArgs e)1980         protected virtual void OnPagePropertiesChanging(System.Web.UI.WebControls.PagePropertiesChangingEventArgs e) { }
OnSelectedIndexChanged(System.EventArgs e)1981         protected virtual void OnSelectedIndexChanged(System.EventArgs e) { }
OnSelectedIndexChanging(System.Web.UI.WebControls.ListViewSelectEventArgs e)1982         protected virtual void OnSelectedIndexChanging(System.Web.UI.WebControls.ListViewSelectEventArgs e) { }
OnSorted(System.EventArgs e)1983         protected virtual void OnSorted(System.EventArgs e) { }
OnSorting(System.Web.UI.WebControls.ListViewSortEventArgs e)1984         protected virtual void OnSorting(System.Web.UI.WebControls.ListViewSortEventArgs e) { }
OnTotalRowCountAvailable(System.Web.UI.WebControls.PageEventArgs e)1985         protected virtual void OnTotalRowCountAvailable(System.Web.UI.WebControls.PageEventArgs e) { }
PerformDataBinding(System.Collections.IEnumerable data)1986         protected internal override void PerformDataBinding(System.Collections.IEnumerable data) { }
PerformSelect()1987         protected override void PerformSelect() { }
RemoveItems()1988         protected virtual void RemoveItems() { }
Render(System.Web.UI.HtmlTextWriter writer)1989         protected internal override void Render(System.Web.UI.HtmlTextWriter writer) { }
SaveControlState()1990         protected internal override object SaveControlState() { throw null; }
SaveViewState()1991         protected override object SaveViewState() { throw null; }
SelectItem(int rowIndex)1992         public void SelectItem(int rowIndex) { }
SetEditItem(int rowIndex)1993         public void SetEditItem(int rowIndex) { }
SetPageProperties(int startRowIndex, int maximumRows, bool databind)1994         protected virtual void SetPageProperties(int startRowIndex, int maximumRows, bool databind) { }
Sort(string sortExpression, System.Web.UI.WebControls.SortDirection sortDirection)1995         public virtual void Sort(string sortExpression, System.Web.UI.WebControls.SortDirection sortDirection) { }
System.Web.UI.WebControls.IPageableItemContainer.SetPageProperties(int startRowIndex, int maximumRows, bool databind)1996         void System.Web.UI.WebControls.IPageableItemContainer.SetPageProperties(int startRowIndex, int maximumRows, bool databind) { }
UpdateItem(int itemIndex, bool causesValidation)1997         public virtual void UpdateItem(int itemIndex, bool causesValidation) { }
1998     }
1999     public partial class ListViewCancelEventArgs : System.ComponentModel.CancelEventArgs
2000     {
ListViewCancelEventArgs(int itemIndex, System.Web.UI.WebControls.ListViewCancelMode cancelMode)2001         public ListViewCancelEventArgs(int itemIndex, System.Web.UI.WebControls.ListViewCancelMode cancelMode) { }
2002         public System.Web.UI.WebControls.ListViewCancelMode CancelMode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2003         public int ItemIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2004     }
2005     public enum ListViewCancelMode
2006     {
2007         CancelingEdit = 0,
2008         CancelingInsert = 1,
2009     }
2010     public partial class ListViewCommandEventArgs : System.Web.UI.WebControls.CommandEventArgs
2011     {
ListViewCommandEventArgs(System.Web.UI.WebControls.ListViewItem item, object commandSource, System.Web.UI.WebControls.CommandEventArgs originalArgs)2012         public ListViewCommandEventArgs(System.Web.UI.WebControls.ListViewItem item, object commandSource, System.Web.UI.WebControls.CommandEventArgs originalArgs) : base (default(System.Web.UI.WebControls.CommandEventArgs)) { }
2013         public object CommandSource { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2014         public bool Handled { get { throw null; } set { } }
2015         public System.Web.UI.WebControls.ListViewItem Item { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2016     }
2017     public partial class ListViewDataItem : System.Web.UI.WebControls.ListViewItem
2018     {
ListViewDataItem(int dataItemIndex, int displayIndex)2019         public ListViewDataItem(int dataItemIndex, int displayIndex) : base (default(System.Web.UI.WebControls.ListViewItemType)) { }
2020         public override object DataItem { get { throw null; } set { } }
2021         public override int DataItemIndex { get { throw null; } }
2022         public override int DisplayIndex { get { throw null; } }
OnBubbleEvent(object source, System.EventArgs e)2023         protected override bool OnBubbleEvent(object source, System.EventArgs e) { throw null; }
2024     }
2025     public partial class ListViewDeletedEventArgs : System.EventArgs
2026     {
ListViewDeletedEventArgs(int affectedRows, System.Exception exception)2027         public ListViewDeletedEventArgs(int affectedRows, System.Exception exception) { }
2028         public int AffectedRows { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2029         public System.Exception Exception { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2030         public bool ExceptionHandled { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
2031         public System.Collections.Specialized.IOrderedDictionary Keys { get { throw null; } }
2032         public System.Collections.Specialized.IOrderedDictionary Values { get { throw null; } }
2033     }
2034     public partial class ListViewDeleteEventArgs : System.ComponentModel.CancelEventArgs
2035     {
ListViewDeleteEventArgs(int itemIndex)2036         public ListViewDeleteEventArgs(int itemIndex) { }
2037         public int ItemIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2038         public System.Collections.Specialized.IOrderedDictionary Keys { get { throw null; } }
2039         public System.Collections.Specialized.IOrderedDictionary Values { get { throw null; } }
2040     }
2041     public partial class ListViewEditEventArgs : System.ComponentModel.CancelEventArgs
2042     {
ListViewEditEventArgs(int newEditIndex)2043         public ListViewEditEventArgs(int newEditIndex) { }
2044         public int NewEditIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2045     }
2046     public partial class ListViewInsertedEventArgs : System.EventArgs
2047     {
ListViewInsertedEventArgs(int affectedRows, System.Exception exception)2048         public ListViewInsertedEventArgs(int affectedRows, System.Exception exception) { }
2049         public int AffectedRows { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2050         public System.Exception Exception { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2051         public bool ExceptionHandled { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
2052         public bool KeepInInsertMode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
2053         public System.Collections.Specialized.IOrderedDictionary Values { get { throw null; } }
2054     }
2055     public partial class ListViewInsertEventArgs : System.ComponentModel.CancelEventArgs
2056     {
ListViewInsertEventArgs(System.Web.UI.WebControls.ListViewItem item)2057         public ListViewInsertEventArgs(System.Web.UI.WebControls.ListViewItem item) { }
2058         public System.Web.UI.WebControls.ListViewItem Item { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2059         public System.Collections.Specialized.IOrderedDictionary Values { get { throw null; } }
2060     }
2061     [System.ComponentModel.ToolboxItemAttribute(false)]
2062     public partial class ListViewItem : System.Web.UI.Control, System.Web.UI.IDataItemContainer, System.Web.UI.INamingContainer
2063     {
ListViewItem(System.Web.UI.WebControls.ListViewItemType itemType)2064         public ListViewItem(System.Web.UI.WebControls.ListViewItemType itemType) { }
2065         public virtual object DataItem { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
2066         public virtual int DataItemIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2067         public virtual int DisplayIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2068         public System.Web.UI.WebControls.ListViewItemType ItemType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
OnBubbleEvent(object source, System.EventArgs e)2069         protected override bool OnBubbleEvent(object source, System.EventArgs e) { throw null; }
2070     }
2071     public partial class ListViewItemEventArgs : System.EventArgs
2072     {
ListViewItemEventArgs(System.Web.UI.WebControls.ListViewItem item)2073         public ListViewItemEventArgs(System.Web.UI.WebControls.ListViewItem item) { }
2074         public System.Web.UI.WebControls.ListViewItem Item { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2075     }
2076     public enum ListViewItemType
2077     {
2078         DataItem = 0,
2079         EmptyItem = 2,
2080         InsertItem = 1,
2081     }
2082     public partial class ListViewPagedDataSource : System.Collections.ICollection, System.Collections.IEnumerable, System.ComponentModel.ITypedList
2083     {
ListViewPagedDataSource()2084         public ListViewPagedDataSource() { }
2085         public bool AllowServerPaging { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
2086         public int Count { get { throw null; } }
2087         public System.Collections.IEnumerable DataSource { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
2088         public int DataSourceCount { get { throw null; } }
2089         public bool IsReadOnly { get { throw null; } }
2090         public bool IsServerPagingEnabled { get { throw null; } }
2091         public bool IsSynchronized { get { throw null; } }
2092         public int MaximumRows { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
2093         public int StartRowIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
2094         public object SyncRoot { get { throw null; } }
2095         public int TotalRowCount { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
CopyTo(System.Array array, int index)2096         public void CopyTo(System.Array array, int index) { }
GetEnumerator()2097         public System.Collections.IEnumerator GetEnumerator() { throw null; }
GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors)2098         public System.ComponentModel.PropertyDescriptorCollection GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors) { throw null; }
GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors)2099         public string GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors) { throw null; }
2100     }
2101     public partial class ListViewSelectEventArgs : System.ComponentModel.CancelEventArgs
2102     {
ListViewSelectEventArgs(int newSelectedIndex)2103         public ListViewSelectEventArgs(int newSelectedIndex) { }
2104         public int NewSelectedIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
2105     }
2106     public partial class ListViewSortEventArgs : System.ComponentModel.CancelEventArgs
2107     {
ListViewSortEventArgs(string sortExpression, System.Web.UI.WebControls.SortDirection sortDirection)2108         public ListViewSortEventArgs(string sortExpression, System.Web.UI.WebControls.SortDirection sortDirection) { }
2109         public System.Web.UI.WebControls.SortDirection SortDirection { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
2110         public string SortExpression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
2111     }
2112     public partial class ListViewUpdatedEventArgs : System.EventArgs
2113     {
ListViewUpdatedEventArgs(int affectedRows, System.Exception exception)2114         public ListViewUpdatedEventArgs(int affectedRows, System.Exception exception) { }
2115         public int AffectedRows { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2116         public System.Exception Exception { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2117         public bool ExceptionHandled { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
2118         public bool KeepInEditMode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
2119         public System.Collections.Specialized.IOrderedDictionary NewValues { get { throw null; } }
2120         public System.Collections.Specialized.IOrderedDictionary OldValues { get { throw null; } }
2121     }
2122     public partial class ListViewUpdateEventArgs : System.ComponentModel.CancelEventArgs
2123     {
ListViewUpdateEventArgs(int itemIndex)2124         public ListViewUpdateEventArgs(int itemIndex) { }
2125         public int ItemIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2126         public System.Collections.Specialized.IOrderedDictionary Keys { get { throw null; } }
2127         public System.Collections.Specialized.IOrderedDictionary NewValues { get { throw null; } }
2128         public System.Collections.Specialized.IOrderedDictionary OldValues { get { throw null; } }
2129     }
2130     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
2131     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
2132     public partial class NextPreviousPagerField : System.Web.UI.WebControls.DataPagerField
2133     {
NextPreviousPagerField()2134         public NextPreviousPagerField() { }
2135         public string ButtonCssClass { get { throw null; } set { } }
2136         public System.Web.UI.WebControls.ButtonType ButtonType { get { throw null; } set { } }
2137         public string FirstPageImageUrl { get { throw null; } set { } }
2138         public string FirstPageText { get { throw null; } set { } }
2139         public string LastPageImageUrl { get { throw null; } set { } }
2140         public string LastPageText { get { throw null; } set { } }
2141         public string NextPageImageUrl { get { throw null; } set { } }
2142         public string NextPageText { get { throw null; } set { } }
2143         public string PreviousPageImageUrl { get { throw null; } set { } }
2144         public string PreviousPageText { get { throw null; } set { } }
2145         public bool RenderDisabledButtonsAsLabels { get { throw null; } set { } }
2146         public bool RenderNonBreakingSpacesBetweenControls { get { throw null; } set { } }
2147         public bool ShowFirstPageButton { get { throw null; } set { } }
2148         public bool ShowLastPageButton { get { throw null; } set { } }
2149         public bool ShowNextPageButton { get { throw null; } set { } }
2150         public bool ShowPreviousPageButton { get { throw null; } set { } }
CopyProperties(System.Web.UI.WebControls.DataPagerField newField)2151         protected override void CopyProperties(System.Web.UI.WebControls.DataPagerField newField) { }
CreateDataPagers(System.Web.UI.WebControls.DataPagerFieldItem container, int startRowIndex, int maximumRows, int totalRowCount, int fieldIndex)2152         public override void CreateDataPagers(System.Web.UI.WebControls.DataPagerFieldItem container, int startRowIndex, int maximumRows, int totalRowCount, int fieldIndex) { }
CreateField()2153         protected override System.Web.UI.WebControls.DataPagerField CreateField() { throw null; }
Equals(object o)2154         public override bool Equals(object o) { throw null; }
GetHashCode()2155         public override int GetHashCode() { throw null; }
HandleEvent(System.Web.UI.WebControls.CommandEventArgs e)2156         public override void HandleEvent(System.Web.UI.WebControls.CommandEventArgs e) { }
2157     }
2158     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
2159     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
2160     public partial class NumericPagerField : System.Web.UI.WebControls.DataPagerField
2161     {
NumericPagerField()2162         public NumericPagerField() { }
2163         public int ButtonCount { get { throw null; } set { } }
2164         public System.Web.UI.WebControls.ButtonType ButtonType { get { throw null; } set { } }
2165         public string CurrentPageLabelCssClass { get { throw null; } set { } }
2166         public string NextPageImageUrl { get { throw null; } set { } }
2167         public string NextPageText { get { throw null; } set { } }
2168         public string NextPreviousButtonCssClass { get { throw null; } set { } }
2169         public string NumericButtonCssClass { get { throw null; } set { } }
2170         public string PreviousPageImageUrl { get { throw null; } set { } }
2171         public string PreviousPageText { get { throw null; } set { } }
2172         public bool RenderNonBreakingSpacesBetweenControls { get { throw null; } set { } }
CopyProperties(System.Web.UI.WebControls.DataPagerField newField)2173         protected override void CopyProperties(System.Web.UI.WebControls.DataPagerField newField) { }
CreateDataPagers(System.Web.UI.WebControls.DataPagerFieldItem container, int startRowIndex, int maximumRows, int totalRowCount, int fieldIndex)2174         public override void CreateDataPagers(System.Web.UI.WebControls.DataPagerFieldItem container, int startRowIndex, int maximumRows, int totalRowCount, int fieldIndex) { }
CreateField()2175         protected override System.Web.UI.WebControls.DataPagerField CreateField() { throw null; }
Equals(object o)2176         public override bool Equals(object o) { throw null; }
GetHashCode()2177         public override int GetHashCode() { throw null; }
HandleEvent(System.Web.UI.WebControls.CommandEventArgs e)2178         public override void HandleEvent(System.Web.UI.WebControls.CommandEventArgs e) { }
2179     }
2180     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
2181     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
2182     public partial class PageEventArgs : System.EventArgs
2183     {
PageEventArgs(int startRowIndex, int maximumRows, int totalRowCount)2184         public PageEventArgs(int startRowIndex, int maximumRows, int totalRowCount) { }
2185         public int MaximumRows { get { throw null; } }
2186         public int StartRowIndex { get { throw null; } }
2187         public int TotalRowCount { get { throw null; } }
2188     }
2189     public partial class PagePropertiesChangingEventArgs : System.EventArgs
2190     {
PagePropertiesChangingEventArgs(int startRowIndex, int maximumRows)2191         public PagePropertiesChangingEventArgs(int startRowIndex, int maximumRows) { }
2192         public int MaximumRows { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2193         public int StartRowIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2194     }
2195     public abstract partial class QueryableDataSource : System.Web.UI.DataSourceControl, System.Web.UI.IDataSource, System.Web.UI.WebControls.IQueryableDataSource
2196     {
QueryableDataSource()2197         protected QueryableDataSource() { }
2198         public event System.EventHandler<System.Web.UI.WebControls.QueryCreatedEventArgs> QueryCreated { add { } remove { } }
CreateQueryableView()2199         protected abstract System.Web.UI.WebControls.QueryableDataSourceView CreateQueryableView();
GetView(string viewName)2200         protected override System.Web.UI.DataSourceView GetView(string viewName) { throw null; }
GetViewNames()2201         protected override System.Collections.ICollection GetViewNames() { throw null; }
LoadViewState(object savedState)2202         protected override void LoadViewState(object savedState) { }
OnInit(System.EventArgs e)2203         protected internal override void OnInit(System.EventArgs e) { }
RaiseViewChanged()2204         public void RaiseViewChanged() { }
SaveViewState()2205         protected override object SaveViewState() { throw null; }
TrackViewState()2206         protected override void TrackViewState() { }
UpdateParameterVales()2207         protected virtual void UpdateParameterVales() { }
2208     }
2209     public partial class QueryableDataSourceEditData
2210     {
QueryableDataSourceEditData()2211         public QueryableDataSourceEditData() { }
2212         public object NewDataObject { get { throw null; } set { } }
2213         public object OriginalDataObject { get { throw null; } set { } }
2214     }
2215     public abstract partial class QueryableDataSourceView : System.Web.UI.DataSourceView, System.Web.UI.IStateManager
2216     {
2217         protected static readonly object EventSelected;
2218         protected static readonly object EventSelecting;
QueryableDataSourceView(System.Web.UI.DataSourceControl owner, string viewName, System.Web.HttpContext context)2219         protected QueryableDataSourceView(System.Web.UI.DataSourceControl owner, string viewName, System.Web.HttpContext context) : base (default(System.Web.UI.IDataSource), default(string)) { }
2220         public bool AutoGenerateOrderByClause { get { throw null; } set { } }
2221         public bool AutoGenerateWhereClause { get { throw null; } set { } }
2222         public virtual bool AutoPage { get { throw null; } set { } }
2223         public virtual bool AutoSort { get { throw null; } set { } }
2224         public override bool CanDelete { get { throw null; } }
2225         public override bool CanInsert { get { throw null; } }
2226         public override bool CanPage { get { throw null; } }
2227         public override bool CanRetrieveTotalRowCount { get { throw null; } }
2228         public override bool CanSort { get { throw null; } }
2229         public override bool CanUpdate { get { throw null; } }
2230         public virtual System.Web.UI.WebControls.ParameterCollection DeleteParameters { get { throw null; } }
2231         protected abstract System.Type EntityType { get; }
2232         public virtual string GroupBy { get { throw null; } set { } }
2233         public virtual System.Web.UI.WebControls.ParameterCollection GroupByParameters { get { throw null; } }
2234         public virtual System.Web.UI.WebControls.ParameterCollection InsertParameters { get { throw null; } }
2235         protected bool IsTrackingViewState { get { throw null; } }
2236         public virtual string OrderBy { get { throw null; } set { } }
2237         public virtual System.Web.UI.WebControls.ParameterCollection OrderByParameters { get { throw null; } }
2238         public virtual string OrderGroupsBy { get { throw null; } set { } }
2239         public virtual System.Web.UI.WebControls.ParameterCollection OrderGroupsByParameters { get { throw null; } }
2240         public virtual string SelectNew { get { throw null; } set { } }
2241         public virtual System.Web.UI.WebControls.ParameterCollection SelectNewParameters { get { throw null; } }
2242         bool System.Web.UI.IStateManager.IsTrackingViewState { get { throw null; } }
2243         public virtual System.Web.UI.WebControls.ParameterCollection UpdateParameters { get { throw null; } }
2244         public virtual string Where { get { throw null; } set { } }
2245         public virtual System.Web.UI.WebControls.ParameterCollection WhereParameters { get { throw null; } }
2246         public event System.EventHandler<System.Web.UI.WebControls.QueryCreatedEventArgs> QueryCreated { add { } remove { } }
BuildDeleteObject(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues, System.Collections.Generic.IDictionary<string, System.Exception> validationErrors)2247         protected System.Web.UI.WebControls.QueryableDataSourceEditData BuildDeleteObject(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues, System.Collections.Generic.IDictionary<string, System.Exception> validationErrors) { throw null; }
BuildInsertObject(System.Collections.IDictionary values, System.Collections.Generic.IDictionary<string, System.Exception> validationErrors)2248         protected System.Web.UI.WebControls.QueryableDataSourceEditData BuildInsertObject(System.Collections.IDictionary values, System.Collections.Generic.IDictionary<string, System.Exception> validationErrors) { throw null; }
BuildQuery(System.Web.UI.DataSourceSelectArguments arguments)2249         protected virtual System.Linq.IQueryable BuildQuery(System.Web.UI.DataSourceSelectArguments arguments) { throw null; }
BuildUpdateObjects(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues, System.Collections.Generic.IDictionary<string, System.Exception> validationErrors)2250         protected System.Web.UI.WebControls.QueryableDataSourceEditData BuildUpdateObjects(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues, System.Collections.Generic.IDictionary<string, System.Exception> validationErrors) { throw null; }
ClearOriginalValues()2251         protected void ClearOriginalValues() { }
CreateQueryContext(System.Web.UI.DataSourceSelectArguments arguments)2252         protected System.Web.UI.WebControls.QueryContext CreateQueryContext(System.Web.UI.DataSourceSelectArguments arguments) { throw null; }
Delete(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues)2253         public int Delete(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues) { throw null; }
DeleteObject(object oldEntity)2254         protected virtual int DeleteObject(object oldEntity) { throw null; }
ExecuteDelete(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues)2255         protected override int ExecuteDelete(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues) { throw null; }
ExecuteInsert(System.Collections.IDictionary values)2256         protected override int ExecuteInsert(System.Collections.IDictionary values) { throw null; }
ExecutePaging(System.Linq.IQueryable source, System.Web.UI.WebControls.QueryContext context)2257         protected System.Linq.IQueryable ExecutePaging(System.Linq.IQueryable source, System.Web.UI.WebControls.QueryContext context) { throw null; }
ExecuteQuery(System.Linq.IQueryable source, System.Web.UI.WebControls.QueryContext context)2258         protected virtual System.Linq.IQueryable ExecuteQuery(System.Linq.IQueryable source, System.Web.UI.WebControls.QueryContext context) { throw null; }
ExecuteQueryExpressions(System.Linq.IQueryable source, System.Web.UI.WebControls.QueryContext context)2259         protected System.Linq.IQueryable ExecuteQueryExpressions(System.Linq.IQueryable source, System.Web.UI.WebControls.QueryContext context) { throw null; }
ExecuteSelect(System.Web.UI.DataSourceSelectArguments arguments)2260         protected internal override System.Collections.IEnumerable ExecuteSelect(System.Web.UI.DataSourceSelectArguments arguments) { throw null; }
ExecuteSorting(System.Linq.IQueryable source, System.Web.UI.WebControls.QueryContext context)2261         protected System.Linq.IQueryable ExecuteSorting(System.Linq.IQueryable source, System.Web.UI.WebControls.QueryContext context) { throw null; }
ExecuteUpdate(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues)2262         protected override int ExecuteUpdate(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues) { throw null; }
GetOriginalValues(System.Collections.IDictionary keys)2263         protected virtual System.Collections.IDictionary GetOriginalValues(System.Collections.IDictionary keys) { throw null; }
GetSource(System.Web.UI.WebControls.QueryContext context)2264         protected abstract object GetSource(System.Web.UI.WebControls.QueryContext context);
HandleValidationErrors(System.Collections.Generic.IDictionary<string, System.Exception> errors, System.Web.UI.DataSourceOperation operation)2265         protected abstract void HandleValidationErrors(System.Collections.Generic.IDictionary<string, System.Exception> errors, System.Web.UI.DataSourceOperation operation);
Insert(System.Collections.IDictionary values)2266         public int Insert(System.Collections.IDictionary values) { throw null; }
InsertObject(object newEntity)2267         protected virtual int InsertObject(object newEntity) { throw null; }
LoadViewState(object savedState)2268         protected virtual void LoadViewState(object savedState) { }
OnQueryCreated(System.Web.UI.WebControls.QueryCreatedEventArgs e)2269         protected virtual void OnQueryCreated(System.Web.UI.WebControls.QueryCreatedEventArgs e) { }
OnQueryParametersChanged(object sender, System.EventArgs e)2270         protected void OnQueryParametersChanged(object sender, System.EventArgs e) { }
RaiseViewChanged()2271         public void RaiseViewChanged() { }
SaveViewState()2272         protected virtual object SaveViewState() { throw null; }
StoreOriginalValues(System.Collections.IList results)2273         protected virtual void StoreOriginalValues(System.Collections.IList results) { }
StoreOriginalValues(System.Collections.IList results, System.Func<System.ComponentModel.PropertyDescriptor, bool> include)2274         protected void StoreOriginalValues(System.Collections.IList results, System.Func<System.ComponentModel.PropertyDescriptor, bool> include) { }
System.Web.UI.IStateManager.LoadViewState(object state)2275         void System.Web.UI.IStateManager.LoadViewState(object state) { }
System.Web.UI.IStateManager.SaveViewState()2276         object System.Web.UI.IStateManager.SaveViewState() { throw null; }
System.Web.UI.IStateManager.TrackViewState()2277         void System.Web.UI.IStateManager.TrackViewState() { }
TrackViewState()2278         protected virtual void TrackViewState() { }
Update(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues)2279         public int Update(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues) { throw null; }
UpdateObject(object oldEntity, object newEntity)2280         protected virtual int UpdateObject(object oldEntity, object newEntity) { throw null; }
2281     }
2282     public partial class QueryContext
2283     {
QueryContext(System.Collections.Generic.IDictionary<string, object> whereParameters, System.Collections.Generic.IDictionary<string, object> orderGroupsByParameters, System.Collections.Specialized.IOrderedDictionary orderByParameters, System.Collections.Generic.IDictionary<string, object> groupByParameters, System.Collections.Generic.IDictionary<string, object> selectParameters, System.Web.UI.DataSourceSelectArguments arguments)2284         public QueryContext(System.Collections.Generic.IDictionary<string, object> whereParameters, System.Collections.Generic.IDictionary<string, object> orderGroupsByParameters, System.Collections.Specialized.IOrderedDictionary orderByParameters, System.Collections.Generic.IDictionary<string, object> groupByParameters, System.Collections.Generic.IDictionary<string, object> selectParameters, System.Web.UI.DataSourceSelectArguments arguments) { }
2285         public System.Web.UI.DataSourceSelectArguments Arguments { get { throw null; } }
2286         public System.Collections.Generic.IDictionary<string, object> GroupByParameters { get { throw null; } }
2287         public System.Collections.Specialized.IOrderedDictionary OrderByParameters { get { throw null; } }
2288         public System.Collections.Generic.IDictionary<string, object> OrderGroupsByParameters { get { throw null; } }
2289         public System.Collections.Generic.IDictionary<string, object> SelectParameters { get { throw null; } }
2290         public System.Collections.Generic.IDictionary<string, object> WhereParameters { get { throw null; } }
2291     }
2292     public partial class QueryCreatedEventArgs : System.EventArgs
2293     {
QueryCreatedEventArgs(System.Linq.IQueryable query)2294         public QueryCreatedEventArgs(System.Linq.IQueryable query) { }
2295         public System.Linq.IQueryable Query { get { throw null; } set { } }
2296     }
2297     public partial class QueryExtender : System.Web.UI.Control
2298     {
QueryExtender()2299         public QueryExtender() { }
2300         public virtual System.Web.UI.WebControls.IQueryableDataSource DataSource { get { throw null; } }
2301         public System.Web.UI.WebControls.Expressions.DataSourceExpressionCollection Expressions { get { throw null; } }
2302         public virtual string TargetControlID { get { throw null; } set { } }
LoadViewState(object savedState)2303         protected override void LoadViewState(object savedState) { }
OnInit(System.EventArgs e)2304         protected internal override void OnInit(System.EventArgs e) { }
SaveViewState()2305         protected override object SaveViewState() { throw null; }
TrackViewState()2306         protected override void TrackViewState() { }
2307     }
2308     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
2309     [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
2310     public partial class TemplatePagerField : System.Web.UI.WebControls.DataPagerField
2311     {
TemplatePagerField()2312         public TemplatePagerField() { }
2313         [System.ComponentModel.BrowsableAttribute(false)]
2314         [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
2315         [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.DataPagerFieldItem), (System.ComponentModel.BindingDirection)(1))]
2316         public virtual System.Web.UI.ITemplate PagerTemplate { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
2317         public event System.EventHandler<System.Web.UI.WebControls.DataPagerCommandEventArgs> PagerCommand { add { } remove { } }
CopyProperties(System.Web.UI.WebControls.DataPagerField newField)2318         protected override void CopyProperties(System.Web.UI.WebControls.DataPagerField newField) { }
CreateDataPagers(System.Web.UI.WebControls.DataPagerFieldItem container, int startRowIndex, int maximumRows, int totalRowCount, int fieldIndex)2319         public override void CreateDataPagers(System.Web.UI.WebControls.DataPagerFieldItem container, int startRowIndex, int maximumRows, int totalRowCount, int fieldIndex) { }
CreateField()2320         protected override System.Web.UI.WebControls.DataPagerField CreateField() { throw null; }
HandleEvent(System.Web.UI.WebControls.CommandEventArgs e)2321         public override void HandleEvent(System.Web.UI.WebControls.CommandEventArgs e) { }
OnPagerCommand(System.Web.UI.WebControls.DataPagerCommandEventArgs e)2322         protected virtual void OnPagerCommand(System.Web.UI.WebControls.DataPagerCommandEventArgs e) { }
2323     }
2324 }
2325 namespace System.Web.UI.WebControls.Expressions
2326 {
2327     public partial class CustomExpression : System.Web.UI.WebControls.Expressions.ParameterDataSourceExpression
2328     {
CustomExpression()2329         public CustomExpression() { }
2330         public event System.EventHandler<System.Web.UI.WebControls.Expressions.CustomExpressionEventArgs> Querying { add { } remove { } }
GetQueryable(System.Linq.IQueryable source)2331         public override System.Linq.IQueryable GetQueryable(System.Linq.IQueryable source) { throw null; }
2332     }
2333     public partial class CustomExpressionEventArgs : System.EventArgs
2334     {
CustomExpressionEventArgs(System.Linq.IQueryable source, System.Collections.Generic.IDictionary<string, object> values)2335         public CustomExpressionEventArgs(System.Linq.IQueryable source, System.Collections.Generic.IDictionary<string, object> values) { }
2336         public System.Linq.IQueryable Query { get { throw null; } set { } }
2337         public System.Collections.Generic.IDictionary<string, object> Values { get { throw null; } }
2338     }
2339     public abstract partial class DataSourceExpression : System.Web.UI.IStateManager
2340     {
DataSourceExpression()2341         protected DataSourceExpression() { }
2342         protected System.Web.HttpContext Context { get { throw null; } }
2343         public System.Web.UI.WebControls.IQueryableDataSource DataSource { get { throw null; } }
2344         protected bool IsTrackingViewState { get { throw null; } }
2345         protected System.Web.UI.Control Owner { get { throw null; } }
2346         bool System.Web.UI.IStateManager.IsTrackingViewState { get { throw null; } }
2347         protected System.Web.UI.StateBag ViewState { get { throw null; } }
GetQueryable(System.Linq.IQueryable source)2348         public abstract System.Linq.IQueryable GetQueryable(System.Linq.IQueryable source);
LoadViewState(object savedState)2349         protected virtual void LoadViewState(object savedState) { }
SaveViewState()2350         protected virtual object SaveViewState() { throw null; }
SetContext(System.Web.UI.Control owner, System.Web.HttpContext context, System.Web.UI.WebControls.IQueryableDataSource dataSource)2351         public virtual void SetContext(System.Web.UI.Control owner, System.Web.HttpContext context, System.Web.UI.WebControls.IQueryableDataSource dataSource) { }
SetDirty()2352         public void SetDirty() { }
System.Web.UI.IStateManager.LoadViewState(object state)2353         void System.Web.UI.IStateManager.LoadViewState(object state) { }
System.Web.UI.IStateManager.SaveViewState()2354         object System.Web.UI.IStateManager.SaveViewState() { throw null; }
System.Web.UI.IStateManager.TrackViewState()2355         void System.Web.UI.IStateManager.TrackViewState() { }
TrackViewState()2356         protected virtual void TrackViewState() { }
2357     }
2358     public partial class DataSourceExpressionCollection : System.Web.UI.StateManagedCollection
2359     {
DataSourceExpressionCollection()2360         public DataSourceExpressionCollection() { }
2361         public System.Web.HttpContext Context { get { throw null; } }
2362         public System.Web.UI.WebControls.Expressions.DataSourceExpression this[int index] { get { throw null; } set { } }
2363         public System.Web.UI.Control Owner { get { throw null; } }
Add(System.Web.UI.WebControls.Expressions.DataSourceExpression expression)2364         public void Add(System.Web.UI.WebControls.Expressions.DataSourceExpression expression) { }
Contains(System.Web.UI.WebControls.Expressions.DataSourceExpression expression)2365         public void Contains(System.Web.UI.WebControls.Expressions.DataSourceExpression expression) { }
CopyTo(System.Web.UI.WebControls.Expressions.DataSourceExpression[] expressionArray, int index)2366         public void CopyTo(System.Web.UI.WebControls.Expressions.DataSourceExpression[] expressionArray, int index) { }
CreateKnownType(int index)2367         protected override object CreateKnownType(int index) { throw null; }
GetKnownTypes()2368         protected override System.Type[] GetKnownTypes() { throw null; }
IndexOf(System.Web.UI.WebControls.Expressions.DataSourceExpression expression)2369         public int IndexOf(System.Web.UI.WebControls.Expressions.DataSourceExpression expression) { throw null; }
Insert(int index, System.Web.UI.WebControls.Expressions.DataSourceExpression expression)2370         public void Insert(int index, System.Web.UI.WebControls.Expressions.DataSourceExpression expression) { }
Remove(System.Web.UI.WebControls.Expressions.DataSourceExpression expression)2371         public void Remove(System.Web.UI.WebControls.Expressions.DataSourceExpression expression) { }
RemoveAt(int index)2372         public void RemoveAt(int index) { }
SetDirtyObject(object o)2373         protected override void SetDirtyObject(object o) { }
2374     }
2375     public partial class MethodExpression : System.Web.UI.WebControls.Expressions.ParameterDataSourceExpression
2376     {
MethodExpression()2377         public MethodExpression() { }
2378         public bool IgnoreIfNotFound { get { throw null; } set { } }
2379         public string MethodName { get { throw null; } set { } }
2380         public string TypeName { get { throw null; } set { } }
GetQueryable(System.Linq.IQueryable source)2381         public override System.Linq.IQueryable GetQueryable(System.Linq.IQueryable source) { throw null; }
2382     }
2383     public partial class OfTypeExpression : System.Web.UI.WebControls.Expressions.DataSourceExpression
2384     {
OfTypeExpression()2385         public OfTypeExpression() { }
OfTypeExpression(System.Type type)2386         public OfTypeExpression(System.Type type) { }
2387         public string TypeName { get { throw null; } set { } }
GetQueryable(System.Linq.IQueryable query)2388         public override System.Linq.IQueryable GetQueryable(System.Linq.IQueryable query) { throw null; }
2389     }
2390     public partial class OrderByExpression : System.Web.UI.WebControls.Expressions.DataSourceExpression
2391     {
OrderByExpression()2392         public OrderByExpression() { }
2393         public string DataField { get { throw null; } set { } }
2394         public System.Web.UI.WebControls.SortDirection Direction { get { throw null; } set { } }
2395         public System.Collections.ObjectModel.Collection<System.Web.UI.WebControls.Expressions.ThenBy> ThenByExpressions { get { throw null; } }
GetQueryable(System.Linq.IQueryable source)2396         public override System.Linq.IQueryable GetQueryable(System.Linq.IQueryable source) { throw null; }
2397     }
2398     public abstract partial class ParameterDataSourceExpression : System.Web.UI.WebControls.Expressions.DataSourceExpression
2399     {
ParameterDataSourceExpression()2400         protected ParameterDataSourceExpression() { }
2401         public System.Web.UI.WebControls.ParameterCollection Parameters { get { throw null; } }
LoadViewState(object savedState)2402         protected override void LoadViewState(object savedState) { }
SaveViewState()2403         protected override object SaveViewState() { throw null; }
SetContext(System.Web.UI.Control owner, System.Web.HttpContext context, System.Web.UI.WebControls.IQueryableDataSource dataSource)2404         public override void SetContext(System.Web.UI.Control owner, System.Web.HttpContext context, System.Web.UI.WebControls.IQueryableDataSource dataSource) { }
TrackViewState()2405         protected override void TrackViewState() { }
2406     }
2407     public partial class PropertyExpression : System.Web.UI.WebControls.Expressions.ParameterDataSourceExpression
2408     {
PropertyExpression()2409         public PropertyExpression() { }
GetQueryable(System.Linq.IQueryable source)2410         public override System.Linq.IQueryable GetQueryable(System.Linq.IQueryable source) { throw null; }
2411     }
2412     public partial class QueryExpression
2413     {
QueryExpression()2414         public QueryExpression() { }
2415         public System.Web.UI.WebControls.Expressions.DataSourceExpressionCollection Expressions { get { throw null; } }
GetQueryable(System.Linq.IQueryable source)2416         public virtual System.Linq.IQueryable GetQueryable(System.Linq.IQueryable source) { throw null; }
Initialize(System.Web.UI.Control owner, System.Web.HttpContext context, System.Web.UI.WebControls.IQueryableDataSource dataSource)2417         public void Initialize(System.Web.UI.Control owner, System.Web.HttpContext context, System.Web.UI.WebControls.IQueryableDataSource dataSource) { }
2418     }
2419     public partial class RangeExpression : System.Web.UI.WebControls.Expressions.ParameterDataSourceExpression
2420     {
RangeExpression()2421         public RangeExpression() { }
2422         public string DataField { get { throw null; } set { } }
2423         public System.Web.UI.WebControls.Expressions.RangeType MaxType { get { throw null; } set { } }
2424         public System.Web.UI.WebControls.Expressions.RangeType MinType { get { throw null; } set { } }
GetQueryable(System.Linq.IQueryable source)2425         public override System.Linq.IQueryable GetQueryable(System.Linq.IQueryable source) { throw null; }
2426     }
2427     public enum RangeType
2428     {
2429         Exclusive = 1,
2430         Inclusive = 2,
2431         None = 0,
2432     }
2433     public partial class SearchExpression : System.Web.UI.WebControls.Expressions.ParameterDataSourceExpression
2434     {
SearchExpression()2435         public SearchExpression() { }
2436         public System.StringComparison ComparisonType { get { throw null; } set { } }
2437         public string DataFields { get { throw null; } set { } }
2438         public System.Web.UI.WebControls.Expressions.SearchType SearchType { get { throw null; } set { } }
GetQueryable(System.Linq.IQueryable source)2439         public override System.Linq.IQueryable GetQueryable(System.Linq.IQueryable source) { throw null; }
2440     }
2441     public enum SearchType
2442     {
2443         Contains = 0,
2444         EndsWith = 2,
2445         StartsWith = 1,
2446     }
2447     public partial class ThenBy
2448     {
ThenBy()2449         public ThenBy() { }
2450         public string DataField { get { throw null; } set { } }
2451         public System.Web.UI.WebControls.SortDirection Direction { get { throw null; } set { } }
2452     }
2453 }
2454