Created
December 9, 2019 21:12
-
-
Save ericstj/0796d775ec8460daede2f45159191a7c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace System.Web.Configuration | |
{ | |
public enum MembershipPasswordCompatibilityMode | |
{ | |
Framework20 = 0, | |
Framework40 = 1, | |
} | |
} | |
namespace System.Web.Hosting | |
{ | |
[System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=false, Inherited=false)] | |
public sealed partial class CustomLoaderAttribute : System.Attribute | |
{ | |
public CustomLoaderAttribute(System.Type customLoaderType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Type CustomLoaderType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute] get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
} | |
namespace System.Web.Security | |
{ | |
[System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")] | |
public enum MembershipCreateStatus | |
{ | |
Success = 0, | |
InvalidUserName = 1, | |
InvalidPassword = 2, | |
InvalidQuestion = 3, | |
InvalidAnswer = 4, | |
InvalidEmail = 5, | |
DuplicateUserName = 6, | |
DuplicateEmail = 7, | |
UserRejected = 8, | |
InvalidProviderUserKey = 9, | |
DuplicateProviderUserKey = 10, | |
ProviderError = 11, | |
} | |
[System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")] | |
public partial class MembershipCreateUserException : System.Exception | |
{ | |
public MembershipCreateUserException() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected MembershipCreateUserException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public MembershipCreateUserException(string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public MembershipCreateUserException(string message, System.Exception innerException) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public MembershipCreateUserException(System.Web.Security.MembershipCreateStatus statusCode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Security.MembershipCreateStatus StatusCode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)] | |
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")] | |
public partial class MembershipPasswordException : System.Exception | |
{ | |
public MembershipPasswordException() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected MembershipPasswordException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public MembershipPasswordException(string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public MembershipPasswordException(string message, System.Exception innerException) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")] | |
public enum MembershipPasswordFormat | |
{ | |
Clear = 0, | |
Hashed = 1, | |
Encrypted = 2, | |
} | |
[System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")] | |
public abstract partial class MembershipProvider : System.Configuration.Provider.ProviderBase | |
{ | |
protected MembershipProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract string ApplicationName { get; set; } | |
public abstract bool EnablePasswordReset { get; } | |
public abstract bool EnablePasswordRetrieval { get; } | |
public abstract int MaxInvalidPasswordAttempts { get; } | |
public abstract int MinRequiredNonAlphanumericCharacters { get; } | |
public abstract int MinRequiredPasswordLength { get; } | |
public abstract int PasswordAttemptWindow { get; } | |
public abstract System.Web.Security.MembershipPasswordFormat PasswordFormat { get; } | |
public abstract string PasswordStrengthRegularExpression { get; } | |
public abstract bool RequiresQuestionAndAnswer { get; } | |
public abstract bool RequiresUniqueEmail { get; } | |
public event System.Web.Security.MembershipValidatePasswordEventHandler ValidatingPassword { add { } remove { } } | |
public abstract bool ChangePassword(string username, string oldPassword, string newPassword); | |
public abstract bool ChangePasswordQuestionAndAnswer(string username, string password, string newPasswordQuestion, string newPasswordAnswer); | |
public abstract 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); | |
protected virtual byte[] DecryptPassword(byte[] encodedPassword) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract bool DeleteUser(string username, bool deleteAllRelatedData); | |
protected virtual byte[] EncryptPassword(byte[] password) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual byte[] EncryptPassword(byte[] password, System.Web.Configuration.MembershipPasswordCompatibilityMode legacyPasswordCompatibilityMode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract System.Web.Security.MembershipUserCollection FindUsersByEmail(string emailToMatch, int pageIndex, int pageSize, out int totalRecords); | |
public abstract System.Web.Security.MembershipUserCollection FindUsersByName(string usernameToMatch, int pageIndex, int pageSize, out int totalRecords); | |
public abstract System.Web.Security.MembershipUserCollection GetAllUsers(int pageIndex, int pageSize, out int totalRecords); | |
public abstract int GetNumberOfUsersOnline(); | |
public abstract string GetPassword(string username, string answer); | |
public abstract System.Web.Security.MembershipUser GetUser(object providerUserKey, bool userIsOnline); | |
public abstract System.Web.Security.MembershipUser GetUser(string username, bool userIsOnline); | |
public abstract string GetUserNameByEmail(string email); | |
protected virtual void OnValidatingPassword(System.Web.Security.ValidatePasswordEventArgs e) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract string ResetPassword(string username, string answer); | |
public abstract bool UnlockUser(string userName); | |
public abstract void UpdateUser(System.Web.Security.MembershipUser user); | |
public abstract bool ValidateUser(string username, string password); | |
} | |
[System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")] | |
public sealed partial class MembershipProviderCollection : System.Configuration.Provider.ProviderCollection | |
{ | |
public MembershipProviderCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public new System.Web.Security.MembershipProvider this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void Add(System.Configuration.Provider.ProviderBase provider) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void CopyTo(System.Web.Security.MembershipProvider[] array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")] | |
public partial class MembershipUser | |
{ | |
protected MembershipUser() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public MembershipUser(string providerName, string name, object providerUserKey, string email, string passwordQuestion, string comment, bool isApproved, bool isLockedOut, System.DateTime creationDate, System.DateTime lastLoginDate, System.DateTime lastActivityDate, System.DateTime lastPasswordChangedDate, System.DateTime lastLockoutDate) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string Comment { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.DateTime CreationDate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string Email { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsApproved { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsLockedOut { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsOnline { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.DateTime LastActivityDate { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.DateTime LastLockoutDate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.DateTime LastLoginDate { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.DateTime LastPasswordChangedDate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string PasswordQuestion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string ProviderName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual object ProviderUserKey { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string UserName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool ChangePassword(string oldPassword, string newPassword) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool ChangePasswordQuestionAndAnswer(string password, string newPasswordQuestion, string newPasswordAnswer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GetPassword() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GetPassword(string passwordAnswer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string ResetPassword() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string ResetPassword(string passwordAnswer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string ToString() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool UnlockUser() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")] | |
public sealed partial class MembershipUserCollection : System.Collections.ICollection, System.Collections.IEnumerable | |
{ | |
public MembershipUserCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsSynchronized { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Security.MembershipUser this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object SyncRoot { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Security.MembershipUser user) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void CopyTo(System.Web.Security.MembershipUser[] array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetReadOnly() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.Collections.ICollection.CopyTo(System.Array array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")] | |
public delegate void MembershipValidatePasswordEventHandler(object sender, System.Web.Security.ValidatePasswordEventArgs e); | |
[System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")] | |
public abstract partial class RoleProvider : System.Configuration.Provider.ProviderBase | |
{ | |
protected RoleProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract string ApplicationName { get; set; } | |
public abstract void AddUsersToRoles(string[] usernames, string[] roleNames); | |
public abstract void CreateRole(string roleName); | |
public abstract bool DeleteRole(string roleName, bool throwOnPopulatedRole); | |
public abstract string[] FindUsersInRole(string roleName, string usernameToMatch); | |
public abstract string[] GetAllRoles(); | |
public abstract string[] GetRolesForUser(string username); | |
public abstract string[] GetUsersInRole(string roleName); | |
public abstract bool IsUserInRole(string username, string roleName); | |
public abstract void RemoveUsersFromRoles(string[] usernames, string[] roleNames); | |
public abstract bool RoleExists(string roleName); | |
} | |
[System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Web, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")] | |
public sealed partial class ValidatePasswordEventArgs : System.EventArgs | |
{ | |
public ValidatePasswordEventArgs(string userName, string password, bool isNewUser) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool Cancel { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Exception FailureInformation { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsNewUser { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Password { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string UserName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
} |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace System.Web | |
{ | |
public enum ApplicationShutdownReason | |
{ | |
None = 0, | |
HostingEnvironment = 1, | |
ChangeInGlobalAsax = 2, | |
ConfigurationChange = 3, | |
UnloadAppDomainCalled = 4, | |
ChangeInSecurityPolicyFile = 5, | |
BinDirChangeOrDirectoryRename = 6, | |
BrowsersDirChangeOrDirectoryRename = 7, | |
CodeDirChangeOrDirectoryRename = 8, | |
ResourcesDirChangeOrDirectoryRename = 9, | |
IdleTimeout = 10, | |
PhysicalApplicationPathChanged = 11, | |
HttpRuntimeClose = 12, | |
InitializationError = 13, | |
MaxRecompilationsReached = 14, | |
BuildManagerChange = 15, | |
} | |
public delegate System.IAsyncResult BeginEventHandler(object sender, System.EventArgs e, System.AsyncCallback cb, object extraData); | |
public partial class DefaultHttpHandler : System.Web.IHttpAsyncHandler, System.Web.IHttpHandler | |
{ | |
public DefaultHttpHandler() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected System.Web.HttpContext Context { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected System.Collections.Specialized.NameValueCollection ExecuteUrlHeaders { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsReusable { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.IAsyncResult BeginProcessRequest(System.Web.HttpContext context, System.AsyncCallback callback, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void EndProcessRequest(System.IAsyncResult result) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void OnExecuteUrlPreconditionFailure() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string OverrideExecuteUrlPath() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void ProcessRequest(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public delegate void EndEventHandler(System.IAsyncResult ar); | |
public sealed partial class EventHandlerTaskAsyncHelper | |
{ | |
public EventHandlerTaskAsyncHelper(System.Web.TaskEventHandler handler) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.BeginEventHandler BeginEventHandler { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.EndEventHandler EndEventHandler { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class HtmlString : System.Web.IHtmlString | |
{ | |
public HtmlString(string value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string ToHtmlString() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string ToString() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class HttpApplication : System.ComponentModel.IComponent, System.IDisposable, System.Web.IHttpAsyncHandler, System.Web.IHttpHandler | |
{ | |
public HttpApplication() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.ComponentModel.BrowsableAttribute(false)] | |
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] | |
public System.Web.HttpApplicationState Application { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.BrowsableAttribute(false)] | |
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] | |
public System.Web.HttpContext Context { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected System.ComponentModel.EventHandlerList Events { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.BrowsableAttribute(false)] | |
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] | |
public System.Web.HttpModuleCollection Modules { [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.High)]get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.BrowsableAttribute(false)] | |
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] | |
public System.Web.HttpRequest Request { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.BrowsableAttribute(false)] | |
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] | |
public System.Web.HttpResponse Response { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.BrowsableAttribute(false)] | |
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] | |
public System.Web.HttpServerUtility Server { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.BrowsableAttribute(false)] | |
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] | |
public System.Web.SessionState.HttpSessionState Session { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.BrowsableAttribute(false)] | |
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] | |
public System.ComponentModel.ISite Site { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
bool System.Web.IHttpHandler.IsReusable { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.BrowsableAttribute(false)] | |
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] | |
public System.Security.Principal.IPrincipal User { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public event System.EventHandler AcquireRequestState { add { } remove { } } | |
public event System.EventHandler AuthenticateRequest { add { } remove { } } | |
public event System.EventHandler AuthorizeRequest { add { } remove { } } | |
public event System.EventHandler BeginRequest { add { } remove { } } | |
public event System.EventHandler Disposed { add { } remove { } } | |
public event System.EventHandler EndRequest { add { } remove { } } | |
public event System.EventHandler Error { add { } remove { } } | |
public event System.EventHandler LogRequest { add { } remove { } } | |
public event System.EventHandler MapRequestHandler { add { } remove { } } | |
public event System.EventHandler PostAcquireRequestState { add { } remove { } } | |
public event System.EventHandler PostAuthenticateRequest { add { } remove { } } | |
public event System.EventHandler PostAuthorizeRequest { add { } remove { } } | |
public event System.EventHandler PostLogRequest { add { } remove { } } | |
public event System.EventHandler PostMapRequestHandler { add { } remove { } } | |
public event System.EventHandler PostReleaseRequestState { add { } remove { } } | |
public event System.EventHandler PostRequestHandlerExecute { add { } remove { } } | |
public event System.EventHandler PostResolveRequestCache { add { } remove { } } | |
public event System.EventHandler PostUpdateRequestCache { add { } remove { } } | |
public event System.EventHandler PreRequestHandlerExecute { add { } remove { } } | |
public event System.EventHandler PreSendRequestContent { add { } remove { } } | |
public event System.EventHandler PreSendRequestHeaders { add { } remove { } } | |
public event System.EventHandler ReleaseRequestState { add { } remove { } } | |
public event System.EventHandler RequestCompleted { add { } remove { } } | |
public event System.EventHandler ResolveRequestCache { add { } remove { } } | |
public event System.EventHandler UpdateRequestCache { add { } remove { } } | |
public void AddOnAcquireRequestStateAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnAcquireRequestStateAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnAuthenticateRequestAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnAuthenticateRequestAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnAuthorizeRequestAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnAuthorizeRequestAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnBeginRequestAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnBeginRequestAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnEndRequestAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnEndRequestAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnLogRequestAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnLogRequestAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnMapRequestHandlerAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnMapRequestHandlerAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPostAcquireRequestStateAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPostAcquireRequestStateAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPostAuthenticateRequestAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPostAuthenticateRequestAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPostAuthorizeRequestAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPostAuthorizeRequestAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPostLogRequestAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPostLogRequestAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPostMapRequestHandlerAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPostMapRequestHandlerAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPostReleaseRequestStateAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPostReleaseRequestStateAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPostRequestHandlerExecuteAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPostRequestHandlerExecuteAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPostResolveRequestCacheAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPostResolveRequestCacheAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPostUpdateRequestCacheAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPostUpdateRequestCacheAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPreRequestHandlerExecuteAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnPreRequestHandlerExecuteAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnReleaseRequestStateAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnReleaseRequestStateAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnResolveRequestCacheAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnResolveRequestCacheAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnUpdateRequestCacheAsync(System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddOnUpdateRequestCacheAsync(System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void CompleteRequest() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Dispose() { } | |
public virtual string GetOutputCacheProviderName(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GetVaryByCustomString(System.Web.HttpContext context, string custom) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Init() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void OnExecuteRequestStep(System.Action<System.Web.HttpContextBase, System.Action> callback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RegisterModule(System.Type moduleType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
System.IAsyncResult System.Web.IHttpAsyncHandler.BeginProcessRequest(System.Web.HttpContext context, System.AsyncCallback cb, object extraData) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.Web.IHttpAsyncHandler.EndProcessRequest(System.IAsyncResult result) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.Web.IHttpHandler.ProcessRequest(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpApplicationState : System.Collections.Specialized.NameObjectCollectionBase | |
{ | |
internal HttpApplicationState() { } | |
public string[] AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpApplicationState Contents { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpStaticObjectsCollection StaticObjects { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(string name, object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object Get(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object Get(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetKey(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Lock() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAll() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Set(string name, object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void UnLock() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class HttpApplicationStateBase : System.Collections.Specialized.NameObjectCollectionBase, System.Collections.ICollection, System.Collections.IEnumerable | |
{ | |
protected HttpApplicationStateBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string[] AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpApplicationStateBase Contents { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsSynchronized { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual object this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual object this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpStaticObjectsCollectionBase StaticObjects { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual object SyncRoot { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual void Add(string name, object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void CopyTo(System.Array array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual object Get(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual object Get(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GetKey(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Lock() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RemoveAll() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Set(string name, object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void UnLock() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class HttpApplicationStateWrapper : System.Web.HttpApplicationStateBase | |
{ | |
public HttpApplicationStateWrapper(System.Web.HttpApplicationState httpApplicationState) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string[] AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpApplicationStateBase Contents { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsSynchronized { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.Specialized.NameObjectCollectionBase.KeysCollection Keys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpStaticObjectsCollectionBase StaticObjects { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object SyncRoot { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void Add(string name, object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void CopyTo(System.Array array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object Get(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object Get(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetKey(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Lock() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void OnDeserialization(object sender) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RemoveAll() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Set(string name, object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void UnLock() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class HttpBrowserCapabilities : System.Web.Configuration.HttpCapabilitiesBase | |
{ | |
public HttpBrowserCapabilities() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class HttpBrowserCapabilitiesBase : System.Web.UI.IFilterResolutionService | |
{ | |
protected HttpBrowserCapabilitiesBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool ActiveXControls { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Collections.IDictionary Adapters { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool AOL { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool BackgroundSounds { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool Beta { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string Browser { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Collections.ArrayList Browsers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanCombineFormsInDeck { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanInitiateVoiceCall { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanRenderAfterInputOrSelectElement { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanRenderEmptySelects { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanRenderInputAndSelectElementsTogether { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanRenderMixedSelects { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanRenderOneventAndPrevElementsTogether { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanRenderPostBackCards { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanRenderSetvarZeroWithMultiSelectionList { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanSendMail { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Collections.IDictionary Capabilities { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CDF { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Version ClrVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool Cookies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool Crawler { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int DefaultSubmitButtonLimit { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Version EcmaScriptVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool Frames { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int GatewayMajorVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual double GatewayMinorVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string GatewayVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool HasBackButton { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool HidesRightAlignedMultiselectScrollbars { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string HtmlTextWriter { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string Id { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string InputType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsColor { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsMobileDevice { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool JavaApplets { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Version JScriptVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int MajorVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int MaximumHrefLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int MaximumRenderedPageSize { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int MaximumSoftkeyLabelLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual double MinorVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string MinorVersionString { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string MobileDeviceManufacturer { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string MobileDeviceModel { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Version MSDomVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int NumberOfSoftkeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string Platform { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string PreferredImageMime { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string PreferredRenderingMime { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string PreferredRenderingType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string PreferredRequestEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string PreferredResponseEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RendersBreakBeforeWmlSelectAndInput { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RendersBreaksAfterHtmlLists { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RendersBreaksAfterWmlAnchor { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RendersBreaksAfterWmlInput { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RendersWmlDoAcceptsInline { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RendersWmlSelectsAsMenuCards { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string RequiredMetaTagNameValue { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresAttributeColonSubstitution { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresContentTypeMetaTag { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresControlStateInSession { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresDBCSCharacter { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresHtmlAdaptiveErrorReporting { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresLeadingPageBreak { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresNoBreakInFormatting { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresOutputOptimization { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresPhoneNumbersAsPlainText { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresSpecialViewStateEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresUniqueFilePathSuffix { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresUniqueHtmlCheckboxNames { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresUniqueHtmlInputNames { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresUrlEncodedPostfieldValues { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int ScreenBitDepth { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int ScreenCharactersHeight { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int ScreenCharactersWidth { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int ScreenPixelsHeight { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int ScreenPixelsWidth { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsAccesskeyAttribute { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsBodyColor { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsBold { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsCacheControlMetaTag { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsCallback { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsCss { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsDivAlign { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsDivNoWrap { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsEmptyStringInCookieValue { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsFontColor { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsFontName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsFontSize { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsImageSubmit { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsIModeSymbols { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsInputIStyle { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsInputMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsItalic { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsJPhoneMultiMediaAttributes { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsJPhoneSymbols { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsQueryStringInFormAction { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsRedirectWithCookie { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsSelectMultiple { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsUncheck { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsXmlHttp { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool Tables { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Type TagWriter { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string Type { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool UseOptimizedCacheKey { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool VBScript { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string Version { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Version W3CDomVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool Win16 { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool Win32 { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual void AddBrowser(string browserName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual int CompareFilters(string filter1, string filter2) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.UI.HtmlTextWriter CreateHtmlTextWriter(System.IO.TextWriter w) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void DisableOptimizedCacheKey() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool EvaluateFilter(string filterName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Version[] GetClrVersions() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool IsBrowser(string browserName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class HttpBrowserCapabilitiesWrapper : System.Web.HttpBrowserCapabilitiesBase | |
{ | |
public HttpBrowserCapabilitiesWrapper(System.Web.HttpBrowserCapabilities httpBrowserCapabilities) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool ActiveXControls { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.IDictionary Adapters { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool AOL { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool BackgroundSounds { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Beta { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string Browser { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.ArrayList Browsers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool CanCombineFormsInDeck { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool CanInitiateVoiceCall { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool CanRenderAfterInputOrSelectElement { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool CanRenderEmptySelects { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool CanRenderInputAndSelectElementsTogether { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool CanRenderMixedSelects { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool CanRenderOneventAndPrevElementsTogether { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool CanRenderPostBackCards { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool CanRenderSetvarZeroWithMultiSelectionList { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool CanSendMail { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.IDictionary Capabilities { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool CDF { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Version ClrVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Cookies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Crawler { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int DefaultSubmitButtonLimit { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Version EcmaScriptVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Frames { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int GatewayMajorVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override double GatewayMinorVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string GatewayVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool HasBackButton { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool HidesRightAlignedMultiselectScrollbars { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string HtmlTextWriter { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string Id { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string InputType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsColor { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsMobileDevice { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool JavaApplets { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Version JScriptVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int MajorVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int MaximumHrefLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int MaximumRenderedPageSize { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int MaximumSoftkeyLabelLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override double MinorVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string MinorVersionString { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string MobileDeviceManufacturer { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string MobileDeviceModel { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Version MSDomVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int NumberOfSoftkeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string Platform { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string PreferredImageMime { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string PreferredRenderingMime { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string PreferredRenderingType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string PreferredRequestEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string PreferredResponseEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RendersBreakBeforeWmlSelectAndInput { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RendersBreaksAfterHtmlLists { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RendersBreaksAfterWmlAnchor { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RendersBreaksAfterWmlInput { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RendersWmlDoAcceptsInline { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RendersWmlSelectsAsMenuCards { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string RequiredMetaTagNameValue { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RequiresAttributeColonSubstitution { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RequiresContentTypeMetaTag { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RequiresControlStateInSession { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RequiresDBCSCharacter { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RequiresHtmlAdaptiveErrorReporting { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RequiresLeadingPageBreak { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RequiresNoBreakInFormatting { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RequiresOutputOptimization { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RequiresPhoneNumbersAsPlainText { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RequiresSpecialViewStateEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RequiresUniqueFilePathSuffix { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RequiresUniqueHtmlCheckboxNames { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RequiresUniqueHtmlInputNames { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RequiresUrlEncodedPostfieldValues { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int ScreenBitDepth { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int ScreenCharactersHeight { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int ScreenCharactersWidth { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int ScreenPixelsHeight { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int ScreenPixelsWidth { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsAccesskeyAttribute { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsBodyColor { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsBold { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsCacheControlMetaTag { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsCallback { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsCss { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsDivAlign { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsDivNoWrap { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsEmptyStringInCookieValue { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsFontColor { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsFontName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsFontSize { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsImageSubmit { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsIModeSymbols { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsInputIStyle { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsInputMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsItalic { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsJPhoneMultiMediaAttributes { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsJPhoneSymbols { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsQueryStringInFormAction { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsRedirectWithCookie { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsSelectMultiple { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsUncheck { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsXmlHttp { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Tables { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Type TagWriter { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string Type { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool UseOptimizedCacheKey { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool VBScript { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string Version { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Version W3CDomVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Win16 { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Win32 { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void AddBrowser(string browserName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int CompareFilters(string filter1, string filter2) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.UI.HtmlTextWriter CreateHtmlTextWriter(System.IO.TextWriter w) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void DisableOptimizedCacheKey() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool EvaluateFilter(string filterName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Version[] GetClrVersions() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool IsBrowser(string browserName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum HttpCacheability | |
{ | |
NoCache = 1, | |
Private = 2, | |
Server = 3, | |
ServerAndNoCache = 3, | |
Public = 4, | |
ServerAndPrivate = 5, | |
} | |
public sealed partial class HttpCachePolicy | |
{ | |
internal HttpCachePolicy() { } | |
public System.DateTime UtcTimestampCreated { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpCacheVaryByContentEncodings VaryByContentEncodings { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpCacheVaryByHeaders VaryByHeaders { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpCacheVaryByParams VaryByParams { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void AddValidationCallback(System.Web.HttpCacheValidateHandler handler, object data) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AppendCacheExtension(string extension) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.HttpCacheability GetCacheability() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetCacheExtensions() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetETag() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool GetETagFromFileDependencies() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.DateTime GetExpires() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool GetIgnoreRangeRequests() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool GetLastModifiedFromFileDependencies() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.TimeSpan GetMaxAge() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool GetNoServerCaching() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool GetNoStore() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool GetNoTransforms() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int GetOmitVaryStar() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.TimeSpan GetProxyMaxAge() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.HttpCacheRevalidation GetRevalidation() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.DateTime GetUtcLastModified() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetVaryByCustom() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool HasSlidingExpiration() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsModified() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsValidUntilExpires() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetAllowResponseInBrowserHistory(bool allow) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetCacheability(System.Web.HttpCacheability cacheability) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetCacheability(System.Web.HttpCacheability cacheability, string field) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetETag(string etag) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetETagFromFileDependencies() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetExpires(System.DateTime date) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetLastModified(System.DateTime date) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetLastModifiedFromFileDependencies() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetMaxAge(System.TimeSpan delta) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetNoServerCaching() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetNoStore() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetNoTransforms() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetOmitVaryStar(bool omit) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetProxyMaxAge(System.TimeSpan delta) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetRevalidation(System.Web.HttpCacheRevalidation revalidation) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetSlidingExpiration(bool slide) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetValidUntilExpires(bool validUntilExpires) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetVaryByCustom(string custom) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class HttpCachePolicyBase | |
{ | |
protected HttpCachePolicyBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.HttpCacheVaryByContentEncodings VaryByContentEncodings { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpCacheVaryByHeaders VaryByHeaders { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpCacheVaryByParams VaryByParams { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual void AddValidationCallback(System.Web.HttpCacheValidateHandler handler, object data) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void AppendCacheExtension(string extension) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetAllowResponseInBrowserHistory(bool allow) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetCacheability(System.Web.HttpCacheability cacheability) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetCacheability(System.Web.HttpCacheability cacheability, string field) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetETag(string etag) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetETagFromFileDependencies() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetExpires(System.DateTime date) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetLastModified(System.DateTime date) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetLastModifiedFromFileDependencies() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetMaxAge(System.TimeSpan delta) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetNoServerCaching() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetNoStore() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetNoTransforms() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetOmitVaryStar(bool omit) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetProxyMaxAge(System.TimeSpan delta) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetRevalidation(System.Web.HttpCacheRevalidation revalidation) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetSlidingExpiration(bool slide) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetValidUntilExpires(bool validUntilExpires) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetVaryByCustom(string custom) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class HttpCachePolicyWrapper : System.Web.HttpCachePolicyBase | |
{ | |
public HttpCachePolicyWrapper(System.Web.HttpCachePolicy httpCachePolicy) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.HttpCacheVaryByContentEncodings VaryByContentEncodings { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpCacheVaryByHeaders VaryByHeaders { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpCacheVaryByParams VaryByParams { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void AddValidationCallback(System.Web.HttpCacheValidateHandler handler, object data) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void AppendCacheExtension(string extension) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetAllowResponseInBrowserHistory(bool allow) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetCacheability(System.Web.HttpCacheability cacheability) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetCacheability(System.Web.HttpCacheability cacheability, string field) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetETag(string etag) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetETagFromFileDependencies() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetExpires(System.DateTime date) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetLastModified(System.DateTime date) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetLastModifiedFromFileDependencies() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetMaxAge(System.TimeSpan delta) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetNoServerCaching() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetNoStore() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetNoTransforms() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetOmitVaryStar(bool omit) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetProxyMaxAge(System.TimeSpan delta) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetRevalidation(System.Web.HttpCacheRevalidation revalidation) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetSlidingExpiration(bool slide) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetValidUntilExpires(bool validUntilExpires) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetVaryByCustom(string custom) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum HttpCacheRevalidation | |
{ | |
AllCaches = 1, | |
ProxyCaches = 2, | |
None = 3, | |
} | |
public delegate void HttpCacheValidateHandler(System.Web.HttpContext context, object data, ref System.Web.HttpValidationStatus validationStatus); | |
public sealed partial class HttpCacheVaryByContentEncodings | |
{ | |
public HttpCacheVaryByContentEncodings() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool this[string contentEncoding] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string[] GetContentEncodings() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetContentEncodings(string[] contentEncodings) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpCacheVaryByHeaders | |
{ | |
public HttpCacheVaryByHeaders() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool AcceptTypes { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool this[string header] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool UserAgent { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool UserCharSet { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool UserLanguage { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string[] GetHeaders() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetHeaders(string[] headers) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void VaryByUnspecifiedParameters() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpCacheVaryByParams | |
{ | |
public HttpCacheVaryByParams() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IgnoreParams { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool this[string header] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string[] GetParams() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetParams(string[] parameters) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class HttpClientCertificate : System.Collections.Specialized.NameValueCollection | |
{ | |
internal HttpClientCertificate() { } | |
public byte[] BinaryIssuer { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int CertEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public byte[] Certificate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Cookie { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int Flags { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsPresent { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Issuer { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsValid { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int KeySize { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public byte[] PublicKey { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int SecretKeySize { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string SerialNumber { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ServerIssuer { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ServerSubject { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Subject { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.DateTime ValidFrom { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.DateTime ValidUntil { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string Get(string field) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpCompileException : System.Web.HttpException | |
{ | |
public HttpCompileException() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpCompileException(System.CodeDom.Compiler.CompilerResults results, string sourceCode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpCompileException(string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpCompileException(string message, System.Exception innerException) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string Message { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.CodeDom.Compiler.CompilerResults Results { [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.High)]get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string SourceCode { [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.High)]get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpContext : System.IServiceProvider | |
{ | |
public HttpContext(System.Web.HttpRequest request, System.Web.HttpResponse response) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpContext(System.Web.HttpWorkerRequest wr) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Exception[] AllErrors { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool AllowAsyncDuringSyncStages { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpApplicationState Application { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpApplication ApplicationInstance { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.AsyncPreloadModeFlags AsyncPreloadMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Caching.Cache Cache { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.HttpContext Current { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.IHttpHandler CurrentHandler { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.RequestNotification CurrentNotification { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Exception Error { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.IHttpHandler Handler { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsCustomErrorEnabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsDebuggingEnabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsPostNotification { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsWebSocketRequest { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsWebSocketRequestUpgrading { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.IDictionary Items { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Instrumentation.PageInstrumentationService PageInstrumentation { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.IHttpHandler PreviousHandler { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Profile.ProfileBase Profile { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpRequest Request { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpResponse Response { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpServerUtility Server { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.SessionState.HttpSessionState Session { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool SkipAuthorization { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool ThreadAbortOnTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.DateTime Timestamp { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.TraceContext Trace { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Security.Principal.IPrincipal User { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string WebSocketNegotiatedProtocol { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Generic.IList<string> WebSocketRequestedProtocols { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void AcceptWebSocketRequest(System.Func<System.Web.WebSockets.AspNetWebSocketContext, System.Threading.Tasks.Task> userFunc) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AcceptWebSocketRequest(System.Func<System.Web.WebSockets.AspNetWebSocketContext, System.Threading.Tasks.Task> userFunc, System.Web.WebSockets.AspNetWebSocketOptions options) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddError(System.Exception errorInfo) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.ISubscriptionToken AddOnRequestCompleted(System.Action<System.Web.HttpContext> callback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void ClearError() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.ISubscriptionToken DisposeOnPipelineCompleted(System.IDisposable target) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static object GetAppConfig(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object GetConfig(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static object GetGlobalResourceObject(string classKey, string resourceKey) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static object GetGlobalResourceObject(string classKey, string resourceKey, System.Globalization.CultureInfo culture) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static object GetLocalResourceObject(string virtualPath, string resourceKey) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static object GetLocalResourceObject(string virtualPath, string resourceKey, System.Globalization.CultureInfo culture) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object GetSection(string sectionName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemapHandler(System.Web.IHttpHandler handler) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RewritePath(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RewritePath(string path, bool rebaseClientPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RewritePath(string filePath, string pathInfo, string queryString) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RewritePath(string filePath, string pathInfo, string queryString, bool setClientFilePath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetSessionStateBehavior(System.Web.SessionState.SessionStateBehavior sessionStateBehavior) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
object System.IServiceProvider.GetService(System.Type service) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class HttpContextBase : System.IServiceProvider | |
{ | |
protected HttpContextBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Exception[] AllErrors { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool AllowAsyncDuringSyncStages { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpApplicationStateBase Application { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpApplication ApplicationInstance { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.Configuration.AsyncPreloadModeFlags AsyncPreloadMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.Caching.Cache Cache { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.IHttpHandler CurrentHandler { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.RequestNotification CurrentNotification { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Exception Error { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.IHttpHandler Handler { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsCustomErrorEnabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsDebuggingEnabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsPostNotification { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsWebSocketRequest { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsWebSocketRequestUpgrading { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Collections.IDictionary Items { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.Instrumentation.PageInstrumentationService PageInstrumentation { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.IHttpHandler PreviousHandler { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.Profile.ProfileBase Profile { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpRequestBase Request { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpResponseBase Response { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpServerUtilityBase Server { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpSessionStateBase Session { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SkipAuthorization { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool ThreadAbortOnTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.DateTime Timestamp { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.TraceContext Trace { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Security.Principal.IPrincipal User { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string WebSocketNegotiatedProtocol { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Collections.Generic.IList<string> WebSocketRequestedProtocols { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual void AcceptWebSocketRequest(System.Func<System.Web.WebSockets.AspNetWebSocketContext, System.Threading.Tasks.Task> userFunc) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void AcceptWebSocketRequest(System.Func<System.Web.WebSockets.AspNetWebSocketContext, System.Threading.Tasks.Task> userFunc, System.Web.WebSockets.AspNetWebSocketOptions options) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void AddError(System.Exception errorInfo) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.ISubscriptionToken AddOnRequestCompleted(System.Action<System.Web.HttpContextBase> callback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void ClearError() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.ISubscriptionToken DisposeOnPipelineCompleted(System.IDisposable target) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual object GetGlobalResourceObject(string classKey, string resourceKey) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual object GetGlobalResourceObject(string classKey, string resourceKey, System.Globalization.CultureInfo culture) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual object GetLocalResourceObject(string virtualPath, string resourceKey) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual object GetLocalResourceObject(string virtualPath, string resourceKey, System.Globalization.CultureInfo culture) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual object GetSection(string sectionName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual object GetService(System.Type serviceType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RemapHandler(System.Web.IHttpHandler handler) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RewritePath(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RewritePath(string path, bool rebaseClientPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RewritePath(string filePath, string pathInfo, string queryString) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RewritePath(string filePath, string pathInfo, string queryString, bool setClientFilePath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetSessionStateBehavior(System.Web.SessionState.SessionStateBehavior sessionStateBehavior) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class HttpContextWrapper : System.Web.HttpContextBase | |
{ | |
public HttpContextWrapper(System.Web.HttpContext httpContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Exception[] AllErrors { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool AllowAsyncDuringSyncStages { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpApplicationStateBase Application { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpApplication ApplicationInstance { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.Configuration.AsyncPreloadModeFlags AsyncPreloadMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.Caching.Cache Cache { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.IHttpHandler CurrentHandler { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.RequestNotification CurrentNotification { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Exception Error { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.IHttpHandler Handler { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsCustomErrorEnabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsDebuggingEnabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsPostNotification { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsWebSocketRequest { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsWebSocketRequestUpgrading { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.IDictionary Items { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.Instrumentation.PageInstrumentationService PageInstrumentation { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.IHttpHandler PreviousHandler { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.Profile.ProfileBase Profile { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpRequestBase Request { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpResponseBase Response { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpServerUtilityBase Server { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpSessionStateBase Session { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SkipAuthorization { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool ThreadAbortOnTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.DateTime Timestamp { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.TraceContext Trace { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Security.Principal.IPrincipal User { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string WebSocketNegotiatedProtocol { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.Generic.IList<string> WebSocketRequestedProtocols { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void AcceptWebSocketRequest(System.Func<System.Web.WebSockets.AspNetWebSocketContext, System.Threading.Tasks.Task> userFunc) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void AcceptWebSocketRequest(System.Func<System.Web.WebSockets.AspNetWebSocketContext, System.Threading.Tasks.Task> userFunc, System.Web.WebSockets.AspNetWebSocketOptions options) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void AddError(System.Exception errorInfo) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ISubscriptionToken AddOnRequestCompleted(System.Action<System.Web.HttpContextBase> callback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void ClearError() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ISubscriptionToken DisposeOnPipelineCompleted(System.IDisposable target) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object GetGlobalResourceObject(string classKey, string resourceKey) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object GetGlobalResourceObject(string classKey, string resourceKey, System.Globalization.CultureInfo culture) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object GetLocalResourceObject(string virtualPath, string resourceKey) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object GetLocalResourceObject(string virtualPath, string resourceKey, System.Globalization.CultureInfo culture) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object GetSection(string sectionName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object GetService(System.Type serviceType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RemapHandler(System.Web.IHttpHandler handler) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RewritePath(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RewritePath(string path, bool rebaseClientPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RewritePath(string filePath, string pathInfo, string queryString) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RewritePath(string filePath, string pathInfo, string queryString, bool setClientFilePath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetSessionStateBehavior(System.Web.SessionState.SessionStateBehavior sessionStateBehavior) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpCookie | |
{ | |
public HttpCookie(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpCookie(string name, string value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string Domain { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.DateTime Expires { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool HasKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool HttpOnly { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Path { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.SameSiteMode SameSite { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Secure { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Shareable { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Value { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Specialized.NameValueCollection Values { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool TryParse(string input, out System.Web.HttpCookie result) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpCookieCollection : System.Collections.Specialized.NameObjectCollectionBase | |
{ | |
public HttpCookieCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string[] AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpCookie this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpCookie this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.HttpCookie cookie) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void CopyTo(System.Array dest, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.HttpCookie Get(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.HttpCookie Get(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetKey(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Set(System.Web.HttpCookie cookie) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum HttpCookieMode | |
{ | |
UseUri = 0, | |
UseCookies = 1, | |
AutoDetect = 2, | |
UseDeviceProfile = 3, | |
} | |
public partial class HttpException : System.Runtime.InteropServices.ExternalException | |
{ | |
public HttpException() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpException(int httpCode, string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpException(int httpCode, string message, System.Exception innerException) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpException(int httpCode, string message, int hr) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected HttpException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpException(string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpException(string message, System.Exception innerException) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpException(string message, int hr) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int WebEventCode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.HttpException CreateFromLastError(string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetHtmlErrorMessage() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int GetHttpCode() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpFileCollection : System.Collections.Specialized.NameObjectCollectionBase | |
{ | |
internal HttpFileCollection() { } | |
public string[] AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpPostedFile this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpPostedFile this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void CopyTo(System.Array dest, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.HttpPostedFile Get(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.HttpPostedFile Get(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetKey(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.Generic.IList<System.Web.HttpPostedFile> GetMultiple(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class HttpFileCollectionBase : System.Collections.Specialized.NameObjectCollectionBase, System.Collections.ICollection, System.Collections.IEnumerable | |
{ | |
protected HttpFileCollectionBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string[] AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsSynchronized { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpPostedFileBase this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpPostedFileBase this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual object SyncRoot { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual void CopyTo(System.Array dest, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.HttpPostedFileBase Get(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.HttpPostedFileBase Get(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GetKey(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Collections.Generic.IList<System.Web.HttpPostedFileBase> GetMultiple(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class HttpFileCollectionWrapper : System.Web.HttpFileCollectionBase | |
{ | |
public HttpFileCollectionWrapper(System.Web.HttpFileCollection httpFileCollection) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string[] AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsSynchronized { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpPostedFileBase this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpPostedFileBase this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.Specialized.NameObjectCollectionBase.KeysCollection Keys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object SyncRoot { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void CopyTo(System.Array dest, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.HttpPostedFileBase Get(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.HttpPostedFileBase Get(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetKey(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Collections.Generic.IList<System.Web.HttpPostedFileBase> GetMultiple(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void OnDeserialization(object sender) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpModuleCollection : System.Collections.Specialized.NameObjectCollectionBase | |
{ | |
internal HttpModuleCollection() { } | |
public string[] AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.IHttpModule this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.IHttpModule this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void CopyTo(System.Array dest, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.IHttpModule Get(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.IHttpModule Get(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetKey(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpParseException : System.Web.HttpException | |
{ | |
public HttpParseException() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpParseException(string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpParseException(string message, System.Exception innerException) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpParseException(string message, System.Exception innerException, string virtualPath, string sourceCode, int line) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string FileName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int Line { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.ParserErrorCollection ParserErrors { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string VirtualPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpPostedFile | |
{ | |
internal HttpPostedFile() { } | |
public int ContentLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ContentType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string FileName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.IO.Stream InputStream { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void SaveAs(string filename) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class HttpPostedFileBase | |
{ | |
protected HttpPostedFileBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual int ContentLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string ContentType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string FileName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.IO.Stream InputStream { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual void SaveAs(string filename) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class HttpPostedFileWrapper : System.Web.HttpPostedFileBase | |
{ | |
public HttpPostedFileWrapper(System.Web.HttpPostedFile httpPostedFile) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int ContentLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string ContentType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string FileName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.IO.Stream InputStream { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void SaveAs(string filename) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpRequest | |
{ | |
public HttpRequest(string filename, string url, string queryString) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string[] AcceptTypes { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string AnonymousID { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ApplicationPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string AppRelativeCurrentExecutionFilePath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpBrowserCapabilities Browser { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpClientCertificate ClientCertificate { [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.Low)]get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Text.Encoding ContentEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int ContentLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ContentType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpCookieCollection Cookies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string CurrentExecutionFilePath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string CurrentExecutionFilePathExtension { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string FilePath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpFileCollection Files { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.IO.Stream Filter { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Specialized.NameValueCollection Form { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Specialized.NameValueCollection Headers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Security.Authentication.ExtendedProtection.ChannelBinding HttpChannelBinding { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string HttpMethod { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.IO.Stream InputStream { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsAuthenticated { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsLocal { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsSecureConnection { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Security.Principal.WindowsIdentity LogonUserIdentity { [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.Medium)]get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Specialized.NameValueCollection Params { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Path { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string PathInfo { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string PhysicalApplicationPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string PhysicalPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Specialized.NameValueCollection QueryString { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string RawUrl { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.ReadEntityBodyMode ReadEntityBodyMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Routing.RequestContext RequestContext { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string RequestType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Specialized.NameValueCollection ServerVariables { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Threading.CancellationToken TimedOutToken { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.ITlsTokenBindingInfo TlsTokenBindingInfo { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int TotalBytes { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.UnvalidatedRequestValues Unvalidated { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Uri Url { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Uri UrlReferrer { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string UserAgent { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string UserHostAddress { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string UserHostName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string[] UserLanguages { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Abort() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public byte[] BinaryRead(int count) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.IO.Stream GetBufferedInputStream() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.IO.Stream GetBufferlessInputStream() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.IO.Stream GetBufferlessInputStream(bool disableMaxRequestLength) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void InsertEntityBody() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.High)] | |
public void InsertEntityBody(byte[] buffer, int offset, int count) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int[] MapImageCoordinates(string imageFieldName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string MapPath(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string MapPath(string virtualPath, string baseVirtualDir, bool allowCrossAppMapping) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public double[] MapRawImageCoordinates(string imageFieldName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SaveAs(string filename, bool includeHeaders) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void ValidateInput() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class HttpRequestBase | |
{ | |
protected HttpRequestBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string[] AcceptTypes { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string AnonymousID { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string ApplicationPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string AppRelativeCurrentExecutionFilePath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpBrowserCapabilitiesBase Browser { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpClientCertificate ClientCertificate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Text.Encoding ContentEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int ContentLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string ContentType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpCookieCollection Cookies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string CurrentExecutionFilePath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string CurrentExecutionFilePathExtension { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string FilePath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpFileCollectionBase Files { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.IO.Stream Filter { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Collections.Specialized.NameValueCollection Form { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Collections.Specialized.NameValueCollection Headers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Security.Authentication.ExtendedProtection.ChannelBinding HttpChannelBinding { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string HttpMethod { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.IO.Stream InputStream { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsAuthenticated { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsLocal { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsSecureConnection { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Security.Principal.WindowsIdentity LogonUserIdentity { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Collections.Specialized.NameValueCollection Params { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string Path { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string PathInfo { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string PhysicalApplicationPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string PhysicalPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Collections.Specialized.NameValueCollection QueryString { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string RawUrl { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.ReadEntityBodyMode ReadEntityBodyMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.Routing.RequestContext RequestContext { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string RequestType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Collections.Specialized.NameValueCollection ServerVariables { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Threading.CancellationToken TimedOutToken { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.ITlsTokenBindingInfo TlsTokenBindingInfo { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int TotalBytes { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.UnvalidatedRequestValuesBase Unvalidated { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Uri Url { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Uri UrlReferrer { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string UserAgent { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string UserHostAddress { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string UserHostName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string[] UserLanguages { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual void Abort() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual byte[] BinaryRead(int count) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.IO.Stream GetBufferedInputStream() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.IO.Stream GetBufferlessInputStream() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.IO.Stream GetBufferlessInputStream(bool disableMaxRequestLength) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void InsertEntityBody() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void InsertEntityBody(byte[] buffer, int offset, int count) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual int[] MapImageCoordinates(string imageFieldName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string MapPath(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string MapPath(string virtualPath, string baseVirtualDir, bool allowCrossAppMapping) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual double[] MapRawImageCoordinates(string imageFieldName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SaveAs(string filename, bool includeHeaders) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void ValidateInput() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpRequestValidationException : System.Web.HttpException | |
{ | |
public HttpRequestValidationException() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpRequestValidationException(string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpRequestValidationException(string message, System.Exception innerException) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class HttpRequestWrapper : System.Web.HttpRequestBase | |
{ | |
public HttpRequestWrapper(System.Web.HttpRequest httpRequest) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string[] AcceptTypes { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string AnonymousID { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string ApplicationPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string AppRelativeCurrentExecutionFilePath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpBrowserCapabilitiesBase Browser { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpClientCertificate ClientCertificate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Text.Encoding ContentEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int ContentLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string ContentType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpCookieCollection Cookies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string CurrentExecutionFilePath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string CurrentExecutionFilePathExtension { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string FilePath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpFileCollectionBase Files { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.IO.Stream Filter { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.Specialized.NameValueCollection Form { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.Specialized.NameValueCollection Headers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Security.Authentication.ExtendedProtection.ChannelBinding HttpChannelBinding { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string HttpMethod { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.IO.Stream InputStream { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsAuthenticated { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsLocal { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsSecureConnection { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Security.Principal.WindowsIdentity LogonUserIdentity { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.Specialized.NameValueCollection Params { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string Path { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string PathInfo { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string PhysicalApplicationPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string PhysicalPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.Specialized.NameValueCollection QueryString { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string RawUrl { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.ReadEntityBodyMode ReadEntityBodyMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.Routing.RequestContext RequestContext { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string RequestType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.Specialized.NameValueCollection ServerVariables { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Threading.CancellationToken TimedOutToken { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.ITlsTokenBindingInfo TlsTokenBindingInfo { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int TotalBytes { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.UnvalidatedRequestValuesBase Unvalidated { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Uri Url { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Uri UrlReferrer { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string UserAgent { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string UserHostAddress { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string UserHostName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string[] UserLanguages { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void Abort() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override byte[] BinaryRead(int count) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.IO.Stream GetBufferedInputStream() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.IO.Stream GetBufferlessInputStream() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.IO.Stream GetBufferlessInputStream(bool disableMaxRequestLength) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void InsertEntityBody() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void InsertEntityBody(byte[] buffer, int offset, int count) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int[] MapImageCoordinates(string imageFieldName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string MapPath(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string MapPath(string virtualPath, string baseVirtualDir, bool allowCrossAppMapping) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override double[] MapRawImageCoordinates(string imageFieldName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SaveAs(string filename, bool includeHeaders) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void ValidateInput() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpResponse | |
{ | |
public HttpResponse(System.IO.TextWriter writer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool Buffer { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool BufferOutput { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpCachePolicy Cache { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string CacheControl { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Charset { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Threading.CancellationToken ClientDisconnectedToken { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Text.Encoding ContentEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ContentType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpCookieCollection Cookies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int Expires { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.DateTime ExpiresAbsolute { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.IO.Stream Filter { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Text.Encoding HeaderEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Specialized.NameValueCollection Headers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool HeadersWritten { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsClientConnected { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsRequestBeingRedirected { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.IO.TextWriter Output { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.IO.Stream OutputStream { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string RedirectLocation { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Status { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int StatusCode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string StatusDescription { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int SubStatusCode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool SupportsAsyncFlush { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool SuppressContent { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool SuppressDefaultCacheControlHeader { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool SuppressFormsAuthenticationRedirect { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool TrySkipIisCustomErrors { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void AddCacheDependency(params System.Web.Caching.CacheDependency[] dependencies) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddCacheItemDependencies(System.Collections.ArrayList cacheKeys) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddCacheItemDependencies(string[] cacheKeys) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddCacheItemDependency(string cacheKey) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddFileDependencies(System.Collections.ArrayList filenames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddFileDependencies(string[] filenames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddFileDependency(string filename) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddHeader(string name, string value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.ISubscriptionToken AddOnSendingHeaders(System.Action<System.Web.HttpContext> callback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AppendCookie(System.Web.HttpCookie cookie) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AppendHeader(string name, string value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.Medium)] | |
public void AppendToLog(string param) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string ApplyAppPathModifier(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.IAsyncResult BeginFlush(System.AsyncCallback callback, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void BinaryWrite(byte[] buffer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void ClearContent() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void ClearHeaders() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Close() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void DisableKernelCache() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void DisableUserCache() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void End() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void EndFlush(System.IAsyncResult asyncResult) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Flush() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Threading.Tasks.Task FlushAsync() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Pics(string value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void PushPromise(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void PushPromise(string path, string method, System.Collections.Specialized.NameValueCollection headers) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Redirect(string url) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Redirect(string url, bool endResponse) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RedirectPermanent(string url) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RedirectPermanent(string url, bool endResponse) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RedirectToRoute(object routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RedirectToRoute(string routeName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RedirectToRoute(string routeName, object routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RedirectToRoute(string routeName, System.Web.Routing.RouteValueDictionary routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RedirectToRoute(System.Web.Routing.RouteValueDictionary routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RedirectToRoutePermanent(object routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RedirectToRoutePermanent(string routeName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RedirectToRoutePermanent(string routeName, object routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RedirectToRoutePermanent(string routeName, System.Web.Routing.RouteValueDictionary routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RedirectToRoutePermanent(System.Web.Routing.RouteValueDictionary routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RemoveOutputCacheItem(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RemoveOutputCacheItem(string path, string providerName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetCookie(System.Web.HttpCookie cookie) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void TransmitFile(string filename) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void TransmitFile(string filename, long offset, long length) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Write(char ch) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Write(char[] buffer, int index, int count) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Write(object obj) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Write(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void WriteFile(System.IntPtr fileHandle, long offset, long size) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void WriteFile(string filename) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void WriteFile(string filename, bool readIntoMemory) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void WriteFile(string filename, long offset, long size) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void WriteSubstitution(System.Web.HttpResponseSubstitutionCallback callback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class HttpResponseBase | |
{ | |
protected HttpResponseBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool Buffer { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool BufferOutput { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpCachePolicyBase Cache { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string CacheControl { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string Charset { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Threading.CancellationToken ClientDisconnectedToken { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Text.Encoding ContentEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string ContentType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpCookieCollection Cookies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int Expires { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.DateTime ExpiresAbsolute { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.IO.Stream Filter { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Text.Encoding HeaderEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Collections.Specialized.NameValueCollection Headers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool HeadersWritten { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsClientConnected { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsRequestBeingRedirected { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.IO.TextWriter Output { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.IO.Stream OutputStream { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string RedirectLocation { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string Status { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int StatusCode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string StatusDescription { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int SubStatusCode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsAsyncFlush { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SuppressContent { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SuppressDefaultCacheControlHeader { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SuppressFormsAuthenticationRedirect { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool TrySkipIisCustomErrors { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual void AddCacheDependency(params System.Web.Caching.CacheDependency[] dependencies) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void AddCacheItemDependencies(System.Collections.ArrayList cacheKeys) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void AddCacheItemDependencies(string[] cacheKeys) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void AddCacheItemDependency(string cacheKey) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void AddFileDependencies(System.Collections.ArrayList filenames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void AddFileDependencies(string[] filenames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void AddFileDependency(string filename) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void AddHeader(string name, string value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.ISubscriptionToken AddOnSendingHeaders(System.Action<System.Web.HttpContextBase> callback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void AppendCookie(System.Web.HttpCookie cookie) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void AppendHeader(string name, string value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void AppendToLog(string param) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string ApplyAppPathModifier(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.IAsyncResult BeginFlush(System.AsyncCallback callback, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void BinaryWrite(byte[] buffer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void ClearContent() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void ClearHeaders() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Close() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void DisableKernelCache() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void DisableUserCache() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void End() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void EndFlush(System.IAsyncResult asyncResult) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Flush() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Threading.Tasks.Task FlushAsync() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Pics(string value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void PushPromise(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void PushPromise(string path, string method, System.Collections.Specialized.NameValueCollection headers) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Redirect(string url) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Redirect(string url, bool endResponse) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RedirectPermanent(string url) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RedirectPermanent(string url, bool endResponse) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RedirectToRoute(object routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RedirectToRoute(string routeName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RedirectToRoute(string routeName, object routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RedirectToRoute(string routeName, System.Web.Routing.RouteValueDictionary routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RedirectToRoute(System.Web.Routing.RouteValueDictionary routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RedirectToRoutePermanent(object routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RedirectToRoutePermanent(string routeName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RedirectToRoutePermanent(string routeName, object routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RedirectToRoutePermanent(string routeName, System.Web.Routing.RouteValueDictionary routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RedirectToRoutePermanent(System.Web.Routing.RouteValueDictionary routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RemoveOutputCacheItem(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RemoveOutputCacheItem(string path, string providerName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SetCookie(System.Web.HttpCookie cookie) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void TransmitFile(string filename) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void TransmitFile(string filename, long offset, long length) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Write(char ch) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Write(char[] buffer, int index, int count) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Write(object obj) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Write(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void WriteFile(System.IntPtr fileHandle, long offset, long size) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void WriteFile(string filename) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void WriteFile(string filename, bool readIntoMemory) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void WriteFile(string filename, long offset, long size) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void WriteSubstitution(System.Web.HttpResponseSubstitutionCallback callback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public delegate string HttpResponseSubstitutionCallback(System.Web.HttpContext context); | |
public partial class HttpResponseWrapper : System.Web.HttpResponseBase | |
{ | |
public HttpResponseWrapper(System.Web.HttpResponse httpResponse) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool Buffer { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool BufferOutput { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpCachePolicyBase Cache { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string CacheControl { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string Charset { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Threading.CancellationToken ClientDisconnectedToken { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Text.Encoding ContentEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string ContentType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpCookieCollection Cookies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int Expires { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.DateTime ExpiresAbsolute { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.IO.Stream Filter { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Text.Encoding HeaderEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.Specialized.NameValueCollection Headers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool HeadersWritten { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsClientConnected { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsRequestBeingRedirected { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.IO.TextWriter Output { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.IO.Stream OutputStream { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string RedirectLocation { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string Status { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int StatusCode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string StatusDescription { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int SubStatusCode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SupportsAsyncFlush { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SuppressContent { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SuppressDefaultCacheControlHeader { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool SuppressFormsAuthenticationRedirect { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool TrySkipIisCustomErrors { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void AddCacheDependency(params System.Web.Caching.CacheDependency[] dependencies) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void AddCacheItemDependencies(System.Collections.ArrayList cacheKeys) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void AddCacheItemDependencies(string[] cacheKeys) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void AddCacheItemDependency(string cacheKey) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void AddFileDependencies(System.Collections.ArrayList filenames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void AddFileDependencies(string[] filenames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void AddFileDependency(string filename) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void AddHeader(string name, string value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ISubscriptionToken AddOnSendingHeaders(System.Action<System.Web.HttpContextBase> callback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void AppendCookie(System.Web.HttpCookie cookie) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void AppendHeader(string name, string value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void AppendToLog(string param) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string ApplyAppPathModifier(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.IAsyncResult BeginFlush(System.AsyncCallback callback, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void BinaryWrite(byte[] buffer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void ClearContent() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void ClearHeaders() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Close() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void DisableKernelCache() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void DisableUserCache() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void End() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void EndFlush(System.IAsyncResult asyncResult) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Flush() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Threading.Tasks.Task FlushAsync() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Pics(string value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void PushPromise(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void PushPromise(string path, string method, System.Collections.Specialized.NameValueCollection headers) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Redirect(string url) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Redirect(string url, bool endResponse) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RedirectPermanent(string url) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RedirectPermanent(string url, bool endResponse) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RedirectToRoute(object routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RedirectToRoute(string routeName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RedirectToRoute(string routeName, object routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RedirectToRoute(string routeName, System.Web.Routing.RouteValueDictionary routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RedirectToRoute(System.Web.Routing.RouteValueDictionary routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RedirectToRoutePermanent(object routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RedirectToRoutePermanent(string routeName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RedirectToRoutePermanent(string routeName, object routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RedirectToRoutePermanent(string routeName, System.Web.Routing.RouteValueDictionary routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RedirectToRoutePermanent(System.Web.Routing.RouteValueDictionary routeValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RemoveOutputCacheItem(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RemoveOutputCacheItem(string path, string providerName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetCookie(System.Web.HttpCookie cookie) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void TransmitFile(string filename) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void TransmitFile(string filename, long offset, long length) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Write(char ch) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Write(char[] buffer, int index, int count) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Write(object obj) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Write(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void WriteFile(System.IntPtr fileHandle, long offset, long size) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void WriteFile(string filename) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void WriteFile(string filename, bool readIntoMemory) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void WriteFile(string filename, long offset, long size) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void WriteSubstitution(System.Web.HttpResponseSubstitutionCallback callback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpRuntime | |
{ | |
public HttpRuntime() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string AppDomainAppId { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string AppDomainAppPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string AppDomainAppVirtualPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string AppDomainId { [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.High)]get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string AspClientScriptPhysicalPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string AspClientScriptVirtualPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string AspInstallDirectory { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string BinDirectory { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.Caching.Cache Cache { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string ClrInstallDirectory { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string CodegenDir { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Version IISVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool IsOnUNCShare { [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.Low)]get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string MachineConfigurationDirectory { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Version TargetFramework { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool UsingIntegratedPipeline { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.IServiceProvider WebObjectActivator { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static void Close() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.Unrestricted)] | |
public static System.Security.NamedPermissionSet GetNamedPermissionSet() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.Medium)] | |
public static void ProcessRequest(System.Web.HttpWorkerRequest wr) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void UnloadAppDomain() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpServerUtility | |
{ | |
internal HttpServerUtility() { } | |
public string MachineName { [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.Medium)]get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int ScriptTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.Medium)]set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void ClearError() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object CreateObject(string progID) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object CreateObject(System.Type type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object CreateObjectFromClsid(string clsid) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Execute(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Execute(string path, bool preserveForm) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Execute(string path, System.IO.TextWriter writer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Execute(string path, System.IO.TextWriter writer, bool preserveForm) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Execute(System.Web.IHttpHandler handler, System.IO.TextWriter writer, bool preserveForm) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Exception GetLastError() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string HtmlDecode(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void HtmlDecode(string s, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string HtmlEncode(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void HtmlEncode(string s, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string MapPath(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Transfer(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Transfer(string path, bool preserveForm) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Transfer(System.Web.IHttpHandler handler, bool preserveForm) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void TransferRequest(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void TransferRequest(string path, bool preserveForm) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void TransferRequest(string path, bool preserveForm, string method, System.Collections.Specialized.NameValueCollection headers) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void TransferRequest(string path, bool preserveForm, string method, System.Collections.Specialized.NameValueCollection headers, bool preserveUser) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string UrlDecode(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void UrlDecode(string s, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string UrlEncode(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void UrlEncode(string s, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string UrlPathEncode(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static byte[] UrlTokenDecode(string input) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string UrlTokenEncode(byte[] input) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class HttpServerUtilityBase | |
{ | |
protected HttpServerUtilityBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string MachineName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int ScriptTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual void ClearError() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual object CreateObject(string progID) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual object CreateObject(System.Type type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual object CreateObjectFromClsid(string clsid) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Execute(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Execute(string path, bool preserveForm) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Execute(string path, System.IO.TextWriter writer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Execute(string path, System.IO.TextWriter writer, bool preserveForm) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Execute(System.Web.IHttpHandler handler, System.IO.TextWriter writer, bool preserveForm) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Exception GetLastError() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string HtmlDecode(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void HtmlDecode(string s, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string HtmlEncode(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void HtmlEncode(string s, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string MapPath(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Transfer(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Transfer(string path, bool preserveForm) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Transfer(System.Web.IHttpHandler handler, bool preserveForm) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void TransferRequest(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void TransferRequest(string path, bool preserveForm) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void TransferRequest(string path, bool preserveForm, string method, System.Collections.Specialized.NameValueCollection headers) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void TransferRequest(string path, bool preserveForm, string method, System.Collections.Specialized.NameValueCollection headers, bool preserveUser) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string UrlDecode(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void UrlDecode(string s, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string UrlEncode(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void UrlEncode(string s, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string UrlPathEncode(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual byte[] UrlTokenDecode(string input) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string UrlTokenEncode(byte[] input) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class HttpServerUtilityWrapper : System.Web.HttpServerUtilityBase | |
{ | |
public HttpServerUtilityWrapper(System.Web.HttpServerUtility httpServerUtility) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string MachineName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int ScriptTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void ClearError() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object CreateObject(string progID) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object CreateObject(System.Type type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object CreateObjectFromClsid(string clsid) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Execute(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Execute(string path, bool preserveForm) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Execute(string path, System.IO.TextWriter writer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Execute(string path, System.IO.TextWriter writer, bool preserveForm) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Execute(System.Web.IHttpHandler handler, System.IO.TextWriter writer, bool preserveForm) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Exception GetLastError() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string HtmlDecode(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void HtmlDecode(string s, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string HtmlEncode(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void HtmlEncode(string s, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string MapPath(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Transfer(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Transfer(string path, bool preserveForm) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Transfer(System.Web.IHttpHandler handler, bool preserveForm) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void TransferRequest(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void TransferRequest(string path, bool preserveForm) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void TransferRequest(string path, bool preserveForm, string method, System.Collections.Specialized.NameValueCollection headers) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void TransferRequest(string path, bool preserveForm, string method, System.Collections.Specialized.NameValueCollection headers, bool preserveUser) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string UrlDecode(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void UrlDecode(string s, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string UrlEncode(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void UrlEncode(string s, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string UrlPathEncode(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override byte[] UrlTokenDecode(string input) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string UrlTokenEncode(byte[] input) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class HttpSessionStateBase : System.Collections.ICollection, System.Collections.IEnumerable | |
{ | |
protected HttpSessionStateBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual int CodePage { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpSessionStateBase Contents { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpCookieMode CookieMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsCookieless { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsNewSession { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsReadOnly { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsSynchronized { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual object this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual object this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Collections.Specialized.NameObjectCollectionBase.KeysCollection Keys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int LCID { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.SessionState.SessionStateMode Mode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string SessionID { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpStaticObjectsCollectionBase StaticObjects { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual object SyncRoot { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int Timeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual void Abandon() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Add(string name, object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void CopyTo(System.Array array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RemoveAll() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class HttpSessionStateWrapper : System.Web.HttpSessionStateBase | |
{ | |
public HttpSessionStateWrapper(System.Web.SessionState.HttpSessionState httpSessionState) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int CodePage { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpSessionStateBase Contents { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpCookieMode CookieMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsCookieless { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsNewSession { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsReadOnly { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsSynchronized { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.Specialized.NameObjectCollectionBase.KeysCollection Keys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int LCID { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.SessionState.SessionStateMode Mode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string SessionID { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpStaticObjectsCollectionBase StaticObjects { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object SyncRoot { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int Timeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void Abandon() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Add(string name, object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void CopyTo(System.Array array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RemoveAll() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpStaticObjectsCollection : System.Collections.ICollection, System.Collections.IEnumerable | |
{ | |
public HttpStaticObjectsCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsReadOnly { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsSynchronized { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool NeverAccessed { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object SyncRoot { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void CopyTo(System.Array array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.HttpStaticObjectsCollection Deserialize(System.IO.BinaryReader reader) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object GetObject(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Serialize(System.IO.BinaryWriter writer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class HttpStaticObjectsCollectionBase : System.Collections.ICollection, System.Collections.IEnumerable | |
{ | |
protected HttpStaticObjectsCollectionBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsReadOnly { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsSynchronized { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual object this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool NeverAccessed { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual object SyncRoot { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual void CopyTo(System.Array array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual object GetObject(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Serialize(System.IO.BinaryWriter writer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class HttpStaticObjectsCollectionWrapper : System.Web.HttpStaticObjectsCollectionBase | |
{ | |
public HttpStaticObjectsCollectionWrapper(System.Web.HttpStaticObjectsCollection httpStaticObjectsCollection) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsReadOnly { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsSynchronized { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool NeverAccessed { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object SyncRoot { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void CopyTo(System.Array array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object GetObject(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Serialize(System.IO.BinaryWriter writer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class HttpTaskAsyncHandler : System.Web.IHttpAsyncHandler, System.Web.IHttpHandler | |
{ | |
protected HttpTaskAsyncHandler() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool IsReusable { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual void ProcessRequest(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract System.Threading.Tasks.Task ProcessRequestAsync(System.Web.HttpContext context); | |
System.IAsyncResult System.Web.IHttpAsyncHandler.BeginProcessRequest(System.Web.HttpContext context, System.AsyncCallback cb, object extraData) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.Web.IHttpAsyncHandler.EndProcessRequest(System.IAsyncResult result) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpUnhandledException : System.Web.HttpException | |
{ | |
public HttpUnhandledException() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpUnhandledException(string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpUnhandledException(string message, System.Exception innerException) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpUtility | |
{ | |
public HttpUtility() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string HtmlAttributeEncode(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void HtmlAttributeEncode(string s, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string HtmlDecode(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void HtmlDecode(string s, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string HtmlEncode(object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string HtmlEncode(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void HtmlEncode(string s, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string JavaScriptStringEncode(string value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string JavaScriptStringEncode(string value, bool addDoubleQuotes) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Collections.Specialized.NameValueCollection ParseQueryString(string query) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Collections.Specialized.NameValueCollection ParseQueryString(string query, System.Text.Encoding encoding) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string UrlDecode(byte[] bytes, int offset, int count, System.Text.Encoding e) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string UrlDecode(byte[] bytes, System.Text.Encoding e) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string UrlDecode(string str) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string UrlDecode(string str, System.Text.Encoding e) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static byte[] UrlDecodeToBytes(byte[] bytes) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static byte[] UrlDecodeToBytes(byte[] bytes, int offset, int count) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static byte[] UrlDecodeToBytes(string str) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static byte[] UrlDecodeToBytes(string str, System.Text.Encoding e) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string UrlEncode(byte[] bytes) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string UrlEncode(byte[] bytes, int offset, int count) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string UrlEncode(string str) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string UrlEncode(string str, System.Text.Encoding e) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static byte[] UrlEncodeToBytes(byte[] bytes) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static byte[] UrlEncodeToBytes(byte[] bytes, int offset, int count) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static byte[] UrlEncodeToBytes(string str) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static byte[] UrlEncodeToBytes(string str, System.Text.Encoding e) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string UrlEncodeUnicode(string str) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static byte[] UrlEncodeUnicodeToBytes(string str) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string UrlPathEncode(string str) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum HttpValidationStatus | |
{ | |
Invalid = 1, | |
IgnoreThisRequest = 2, | |
Valid = 3, | |
} | |
public abstract partial class HttpWorkerRequest | |
{ | |
public const int HeaderAccept = 20; | |
public const int HeaderAcceptCharset = 21; | |
public const int HeaderAcceptEncoding = 22; | |
public const int HeaderAcceptLanguage = 23; | |
public const int HeaderAcceptRanges = 20; | |
public const int HeaderAge = 21; | |
public const int HeaderAllow = 10; | |
public const int HeaderAuthorization = 24; | |
public const int HeaderCacheControl = 0; | |
public const int HeaderConnection = 1; | |
public const int HeaderContentEncoding = 13; | |
public const int HeaderContentLanguage = 14; | |
public const int HeaderContentLength = 11; | |
public const int HeaderContentLocation = 15; | |
public const int HeaderContentMd5 = 16; | |
public const int HeaderContentRange = 17; | |
public const int HeaderContentType = 12; | |
public const int HeaderCookie = 25; | |
public const int HeaderDate = 2; | |
public const int HeaderEtag = 22; | |
public const int HeaderExpect = 26; | |
public const int HeaderExpires = 18; | |
public const int HeaderFrom = 27; | |
public const int HeaderHost = 28; | |
public const int HeaderIfMatch = 29; | |
public const int HeaderIfModifiedSince = 30; | |
public const int HeaderIfNoneMatch = 31; | |
public const int HeaderIfRange = 32; | |
public const int HeaderIfUnmodifiedSince = 33; | |
public const int HeaderKeepAlive = 3; | |
public const int HeaderLastModified = 19; | |
public const int HeaderLocation = 23; | |
public const int HeaderMaxForwards = 34; | |
public const int HeaderPragma = 4; | |
public const int HeaderProxyAuthenticate = 24; | |
public const int HeaderProxyAuthorization = 35; | |
public const int HeaderRange = 37; | |
public const int HeaderReferer = 36; | |
public const int HeaderRetryAfter = 25; | |
public const int HeaderServer = 26; | |
public const int HeaderSetCookie = 27; | |
public const int HeaderTe = 38; | |
public const int HeaderTrailer = 5; | |
public const int HeaderTransferEncoding = 6; | |
public const int HeaderUpgrade = 7; | |
public const int HeaderUserAgent = 39; | |
public const int HeaderVary = 28; | |
public const int HeaderVia = 8; | |
public const int HeaderWarning = 9; | |
public const int HeaderWwwAuthenticate = 29; | |
public const int ReasonCachePolicy = 2; | |
public const int ReasonCacheSecurity = 3; | |
public const int ReasonClientDisconnect = 4; | |
public const int ReasonDefault = 0; | |
public const int ReasonFileHandleCacheMiss = 1; | |
public const int ReasonResponseCacheMiss = 0; | |
public const int RequestHeaderMaximum = 40; | |
public const int ResponseHeaderMaximum = 30; | |
protected HttpWorkerRequest() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string MachineConfigPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string MachineInstallDirectory { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Guid RequestTraceIdentifier { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string RootWebConfigPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsAsyncFlush { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsAsyncRead { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.IAsyncResult BeginFlush(System.AsyncCallback callback, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.IAsyncResult BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback callback, object state) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void CloseConnection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void EndFlush(System.IAsyncResult asyncResult) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract void EndOfRequest(); | |
public virtual int EndRead(System.IAsyncResult asyncResult) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract void FlushResponse(bool finalFlush); | |
public virtual string GetAppPath() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GetAppPathTranslated() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GetAppPoolID() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual long GetBytesRead() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual byte[] GetClientCertificate() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual byte[] GetClientCertificateBinaryIssuer() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual int GetClientCertificateEncoding() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual byte[] GetClientCertificatePublicKey() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.DateTime GetClientCertificateValidFrom() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.DateTime GetClientCertificateValidUntil() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual long GetConnectionID() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GetFilePath() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GetFilePathTranslated() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract string GetHttpVerbName(); | |
public abstract string GetHttpVersion(); | |
public virtual string GetKnownRequestHeader(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static int GetKnownRequestHeaderIndex(string header) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string GetKnownRequestHeaderName(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static int GetKnownResponseHeaderIndex(string header) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string GetKnownResponseHeaderName(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract string GetLocalAddress(); | |
public abstract int GetLocalPort(); | |
public virtual string GetPathInfo() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual byte[] GetPreloadedEntityBody() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual int GetPreloadedEntityBody(byte[] buffer, int offset) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual int GetPreloadedEntityBodyLength() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GetProtocol() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract string GetQueryString(); | |
public virtual byte[] GetQueryStringRawBytes() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract string GetRawUrl(); | |
public abstract string GetRemoteAddress(); | |
public virtual string GetRemoteName() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract int GetRemotePort(); | |
public virtual int GetRequestReason() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GetServerName() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GetServerVariable(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string GetStatusDescription(int code) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual int GetTotalEntityBodyLength() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GetUnknownRequestHeader(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.CLSCompliantAttribute(false)] | |
public virtual string[][] GetUnknownRequestHeaders() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract string GetUriPath(); | |
public virtual long GetUrlContextID() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.IntPtr GetUserToken() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.IntPtr GetVirtualPathToken() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool HasEntityBody() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool HeadersSent() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool IsClientConnected() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool IsEntireEntityBodyIsPreloaded() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool IsSecure() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string MapPath(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual int ReadEntityBody(byte[] buffer, int size) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual int ReadEntityBody(byte[] buffer, int offset, int size) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SendCalculatedContentLength(int contentLength) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void SendCalculatedContentLength(long contentLength) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract void SendKnownResponseHeader(int index, string value); | |
public abstract void SendResponseFromFile(System.IntPtr handle, long offset, long length); | |
public abstract void SendResponseFromFile(string filename, long offset, long length); | |
public abstract void SendResponseFromMemory(byte[] data, int length); | |
public virtual void SendResponseFromMemory(System.IntPtr data, int length) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract void SendStatus(int statusCode, string statusDescription); | |
public abstract void SendUnknownResponseHeader(string name, string value); | |
public virtual void SetEndOfSendNotification(System.Web.HttpWorkerRequest.EndOfSendNotification callback, object extraData) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public delegate void EndOfSendNotification(System.Web.HttpWorkerRequest wr, object extraData); | |
} | |
public sealed partial class HttpWriter : System.IO.TextWriter | |
{ | |
internal HttpWriter() { } | |
public override System.Text.Encoding Encoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.IO.Stream OutputStream { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void Close() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Flush() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Write(char ch) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Write(char[] buffer, int index, int count) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Write(object obj) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Write(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void WriteBytes(byte[] buffer, int index, int count) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void WriteLine() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void WriteString(string s, int index, int count) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial interface IHtmlString | |
{ | |
string ToHtmlString(); | |
} | |
public partial interface IHttpAsyncHandler : System.Web.IHttpHandler | |
{ | |
System.IAsyncResult BeginProcessRequest(System.Web.HttpContext context, System.AsyncCallback cb, object extraData); | |
void EndProcessRequest(System.IAsyncResult result); | |
} | |
public partial interface IHttpHandler | |
{ | |
bool IsReusable { get; } | |
void ProcessRequest(System.Web.HttpContext context); | |
} | |
public partial interface IHttpHandlerFactory | |
{ | |
System.Web.IHttpHandler GetHandler(System.Web.HttpContext context, string requestType, string url, string pathTranslated); | |
void ReleaseHandler(System.Web.IHttpHandler handler); | |
} | |
public partial interface IHttpModule | |
{ | |
void Dispose(); | |
void Init(System.Web.HttpApplication context); | |
} | |
public sealed partial class IisTraceListener : System.Diagnostics.TraceListener | |
{ | |
public IisTraceListener() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, object data) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, params object[] data) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, string format, params object[] args) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Write(string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Write(string message, string category) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void WriteLine(string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void WriteLine(string message, string category) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial interface IPartitionResolver | |
{ | |
void Initialize(); | |
string ResolvePartition(object key); | |
} | |
public partial interface ISubscriptionToken | |
{ | |
bool IsActive { get; } | |
void Unsubscribe(); | |
} | |
public partial interface ITlsTokenBindingInfo | |
{ | |
byte[] GetProvidedTokenBindingId(); | |
byte[] GetReferredTokenBindingId(); | |
} | |
public static partial class MimeMapping | |
{ | |
public static string GetMimeMapping(string fileName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ParserError | |
{ | |
public ParserError() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ParserError(string errorText, string virtualPath, int line) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string ErrorText { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int Line { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string VirtualPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class ParserErrorCollection : System.Collections.CollectionBase | |
{ | |
public ParserErrorCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ParserErrorCollection(System.Web.ParserError[] value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.ParserError this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int Add(System.Web.ParserError value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddRange(System.Web.ParserErrorCollection value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddRange(System.Web.ParserError[] value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool Contains(System.Web.ParserError value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void CopyTo(System.Web.ParserError[] array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int IndexOf(System.Web.ParserError value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Insert(int index, System.Web.ParserError value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(System.Web.ParserError value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=true)] | |
public sealed partial class PreApplicationStartMethodAttribute : System.Attribute | |
{ | |
public PreApplicationStartMethodAttribute(System.Type type, string methodName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string MethodName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Type Type { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class ProcessInfo | |
{ | |
public ProcessInfo() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ProcessInfo(System.DateTime startTime, System.TimeSpan age, int processID, int requestCount, System.Web.ProcessStatus status, System.Web.ProcessShutdownReason shutdownReason, int peakMemoryUsed) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.TimeSpan Age { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int PeakMemoryUsed { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int ProcessID { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int RequestCount { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.ProcessShutdownReason ShutdownReason { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.DateTime StartTime { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.ProcessStatus Status { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void SetAll(System.DateTime startTime, System.TimeSpan age, int processID, int requestCount, System.Web.ProcessStatus status, System.Web.ProcessShutdownReason shutdownReason, int peakMemoryUsed) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class ProcessModelInfo | |
{ | |
public ProcessModelInfo() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.High)] | |
public static System.Web.ProcessInfo GetCurrentProcessInfo() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.High)] | |
public static System.Web.ProcessInfo[] GetHistory(int numRecords) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum ProcessShutdownReason | |
{ | |
None = 0, | |
Unexpected = 1, | |
RequestsLimit = 2, | |
RequestQueueLimit = 3, | |
Timeout = 4, | |
IdleTimeout = 5, | |
MemoryLimitExceeded = 6, | |
PingFailed = 7, | |
DeadlockSuspected = 8, | |
} | |
public enum ProcessStatus | |
{ | |
Alive = 1, | |
ShuttingDown = 2, | |
ShutDown = 3, | |
Terminated = 4, | |
} | |
public enum ReadEntityBodyMode | |
{ | |
None = 0, | |
Classic = 1, | |
Bufferless = 2, | |
Buffered = 3, | |
} | |
[System.FlagsAttribute] | |
public enum RequestNotification | |
{ | |
BeginRequest = 1, | |
AuthenticateRequest = 2, | |
AuthorizeRequest = 4, | |
ResolveRequestCache = 8, | |
MapRequestHandler = 16, | |
AcquireRequestState = 32, | |
PreExecuteRequestHandler = 64, | |
ExecuteRequestHandler = 128, | |
ReleaseRequestState = 256, | |
UpdateRequestCache = 512, | |
LogRequest = 1024, | |
EndRequest = 2048, | |
SendResponse = 536870912, | |
} | |
public enum RequestNotificationStatus | |
{ | |
Continue = 0, | |
Pending = 1, | |
FinishRequest = 2, | |
} | |
public enum SameSiteMode | |
{ | |
None = 0, | |
Lax = 1, | |
Strict = 2, | |
} | |
public static partial class SiteMap | |
{ | |
public static System.Web.SiteMapNode CurrentNode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool Enabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.SiteMapProvider Provider { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.SiteMapProviderCollection Providers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.SiteMapNode RootNode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static event System.Web.SiteMapResolveEventHandler SiteMapResolve { add { } remove { } } | |
} | |
public partial class SiteMapNode : System.ICloneable, System.Web.UI.IHierarchyData, System.Web.UI.INavigateUIData | |
{ | |
public SiteMapNode(System.Web.SiteMapProvider provider, string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public SiteMapNode(System.Web.SiteMapProvider provider, string key, string url) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public SiteMapNode(System.Web.SiteMapProvider provider, string key, string url, string title) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public SiteMapNode(System.Web.SiteMapProvider provider, string key, string url, string title, string description) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public SiteMapNode(System.Web.SiteMapProvider provider, string key, string url, string title, string description, System.Collections.IList roles, System.Collections.Specialized.NameValueCollection attributes, System.Collections.Specialized.NameValueCollection explicitResourceKeys, string implicitResourceKey) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected System.Collections.Specialized.NameValueCollection Attributes { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.SiteMapNodeCollection ChildNodes { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.LocalizableAttribute(true)] | |
public virtual string Description { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool HasChildNodes { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Key { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.SiteMapNode NextSibling { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.SiteMapNode ParentNode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.SiteMapNode PreviousSibling { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.SiteMapProvider Provider { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool ReadOnly { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ResourceKey { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.IList Roles { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.SiteMapNode RootNode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
bool System.Web.UI.IHierarchyData.HasChildren { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
object System.Web.UI.IHierarchyData.Item { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
string System.Web.UI.IHierarchyData.Path { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
string System.Web.UI.IHierarchyData.Type { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
string System.Web.UI.INavigateUIData.Description { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
string System.Web.UI.INavigateUIData.Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
string System.Web.UI.INavigateUIData.NavigateUrl { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
string System.Web.UI.INavigateUIData.Value { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.LocalizableAttribute(true)] | |
public virtual string Title { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string Url { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.SiteMapNode Clone() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.SiteMapNode Clone(bool cloneParentNodes) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool Equals(object obj) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.SiteMapNodeCollection GetAllNodes() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.UI.WebControls.SiteMapDataSourceView GetDataSourceView(System.Web.UI.WebControls.SiteMapDataSource owner, string viewName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected string GetExplicitResourceString(string attributeName, string defaultValue, bool throwIfNotFound) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetHashCode() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.UI.WebControls.SiteMapHierarchicalDataSourceView GetHierarchicalDataSourceView() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected string GetImplicitResourceString(string attributeName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool IsAccessibleToUser(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool IsDescendantOf(System.Web.SiteMapNode node) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
System.Web.UI.IHierarchicalEnumerable System.Web.UI.IHierarchyData.GetChildren() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
System.Web.UI.IHierarchyData System.Web.UI.IHierarchyData.GetParent() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string ToString() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class SiteMapNodeCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.Web.UI.IHierarchicalEnumerable | |
{ | |
public SiteMapNodeCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public SiteMapNodeCollection(int capacity) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public SiteMapNodeCollection(System.Web.SiteMapNode value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public SiteMapNodeCollection(System.Web.SiteMapNodeCollection value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public SiteMapNodeCollection(System.Web.SiteMapNode[] value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsFixedSize { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsReadOnly { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsSynchronized { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.SiteMapNode this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual object SyncRoot { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
int System.Collections.ICollection.Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
bool System.Collections.ICollection.IsSynchronized { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
object System.Collections.ICollection.SyncRoot { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
bool System.Collections.IList.IsFixedSize { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
bool System.Collections.IList.IsReadOnly { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
object System.Collections.IList.this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int Add(System.Web.SiteMapNode value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void AddRange(System.Web.SiteMapNodeCollection value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void AddRange(System.Web.SiteMapNode[] value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool Contains(System.Web.SiteMapNode value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void CopyTo(System.Web.SiteMapNode[] array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.UI.WebControls.SiteMapDataSourceView GetDataSourceView(System.Web.UI.WebControls.SiteMapDataSource owner, string viewName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.UI.WebControls.SiteMapHierarchicalDataSourceView GetHierarchicalDataSourceView() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.UI.IHierarchyData GetHierarchyData(object enumeratedItem) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual int IndexOf(System.Web.SiteMapNode value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Insert(int index, System.Web.SiteMapNode value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void OnValidate(object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.SiteMapNodeCollection ReadOnly(System.Web.SiteMapNodeCollection collection) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Remove(System.Web.SiteMapNode value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.Collections.ICollection.CopyTo(System.Array array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
int System.Collections.IList.Add(object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.Collections.IList.Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
bool System.Collections.IList.Contains(object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
int System.Collections.IList.IndexOf(object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.Collections.IList.Insert(int index, object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.Collections.IList.Remove(object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.Collections.IList.RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
System.Web.UI.IHierarchyData System.Web.UI.IHierarchicalEnumerable.GetHierarchyData(object enumeratedItem) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class SiteMapProvider : System.Configuration.Provider.ProviderBase | |
{ | |
protected SiteMapProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.SiteMapNode CurrentNode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool EnableLocalization { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.SiteMapProvider ParentProvider { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ResourceKey { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.SiteMapNode RootNode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.SiteMapProvider RootProvider { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool SecurityTrimmingEnabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public event System.Web.SiteMapResolveEventHandler SiteMapResolve { add { } remove { } } | |
protected virtual void AddNode(System.Web.SiteMapNode node) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal virtual void AddNode(System.Web.SiteMapNode node, System.Web.SiteMapNode parentNode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract System.Web.SiteMapNode FindSiteMapNode(string rawUrl); | |
public virtual System.Web.SiteMapNode FindSiteMapNode(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.SiteMapNode FindSiteMapNodeFromKey(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract System.Web.SiteMapNodeCollection GetChildNodes(System.Web.SiteMapNode node); | |
public virtual System.Web.SiteMapNode GetCurrentNodeAndHintAncestorNodes(int upLevel) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.SiteMapNode GetCurrentNodeAndHintNeighborhoodNodes(int upLevel, int downLevel) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract System.Web.SiteMapNode GetParentNode(System.Web.SiteMapNode node); | |
public virtual System.Web.SiteMapNode GetParentNodeRelativeToCurrentNodeAndHintDownFromParent(int walkupLevels, int relativeDepthFromWalkup) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.SiteMapNode GetParentNodeRelativeToNodeAndHintDownFromParent(System.Web.SiteMapNode node, int walkupLevels, int relativeDepthFromWalkup) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal abstract System.Web.SiteMapNode GetRootNodeCore(); | |
protected static System.Web.SiteMapNode GetRootNodeCoreFromProvider(System.Web.SiteMapProvider provider) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void HintAncestorNodes(System.Web.SiteMapNode node, int upLevel) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void HintNeighborhoodNodes(System.Web.SiteMapNode node, int upLevel, int downLevel) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection attributes) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool IsAccessibleToUser(System.Web.HttpContext context, System.Web.SiteMapNode node) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal virtual void RemoveNode(System.Web.SiteMapNode node) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected System.Web.SiteMapNode ResolveSiteMapNode(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class SiteMapProviderCollection : System.Configuration.Provider.ProviderCollection | |
{ | |
public SiteMapProviderCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public new System.Web.SiteMapProvider this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void Add(System.Configuration.Provider.ProviderBase provider) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Add(System.Web.SiteMapProvider provider) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddArray(System.Web.SiteMapProvider[] providerArray) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class SiteMapResolveEventArgs : System.EventArgs | |
{ | |
public SiteMapResolveEventArgs(System.Web.HttpContext context, System.Web.SiteMapProvider provider) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.HttpContext Context { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.SiteMapProvider Provider { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public delegate System.Web.SiteMapNode SiteMapResolveEventHandler(object sender, System.Web.SiteMapResolveEventArgs e); | |
public abstract partial class StaticSiteMapProvider : System.Web.SiteMapProvider | |
{ | |
protected StaticSiteMapProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal override void AddNode(System.Web.SiteMapNode node, System.Web.SiteMapNode parentNode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract System.Web.SiteMapNode BuildSiteMap(); | |
protected virtual void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.SiteMapNode FindSiteMapNode(string rawUrl) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.SiteMapNode FindSiteMapNodeFromKey(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.SiteMapNodeCollection GetChildNodes(System.Web.SiteMapNode node) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.SiteMapNode GetParentNode(System.Web.SiteMapNode node) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal override void RemoveNode(System.Web.SiteMapNode node) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public delegate System.Threading.Tasks.Task TaskEventHandler(object sender, System.EventArgs e); | |
public sealed partial class TraceContext | |
{ | |
public TraceContext(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsEnabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.TraceMode TraceMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public event System.Web.TraceContextEventHandler TraceFinished { add { } remove { } } | |
public void Warn(string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Warn(string category, string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Warn(string category, string message, System.Exception errorInfo) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Write(string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Write(string category, string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Write(string category, string message, System.Exception errorInfo) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class TraceContextEventArgs : System.EventArgs | |
{ | |
public TraceContextEventArgs(System.Collections.ICollection records) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.ICollection TraceRecords { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public delegate void TraceContextEventHandler(object sender, System.Web.TraceContextEventArgs e); | |
public sealed partial class TraceContextRecord | |
{ | |
public TraceContextRecord(string category, string msg, bool isWarning, System.Exception errorInfo) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string Category { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Exception ErrorInfo { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsWarning { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Message { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public enum TraceMode | |
{ | |
SortByTime = 0, | |
SortByCategory = 1, | |
Default = 2, | |
} | |
public sealed partial class UnvalidatedRequestValues | |
{ | |
internal UnvalidatedRequestValues() { } | |
public System.Web.HttpCookieCollection Cookies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpFileCollection Files { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Specialized.NameValueCollection Form { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Specialized.NameValueCollection Headers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string this[string field] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Path { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string PathInfo { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Specialized.NameValueCollection QueryString { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string RawUrl { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Uri Url { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public abstract partial class UnvalidatedRequestValuesBase | |
{ | |
protected UnvalidatedRequestValuesBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.HttpCookieCollection Cookies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpFileCollectionBase Files { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Collections.Specialized.NameValueCollection Form { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Collections.Specialized.NameValueCollection Headers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string this[string field] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string Path { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string PathInfo { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Collections.Specialized.NameValueCollection QueryString { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string RawUrl { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Uri Url { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class UnvalidatedRequestValuesWrapper : System.Web.UnvalidatedRequestValuesBase | |
{ | |
public UnvalidatedRequestValuesWrapper(System.Web.UnvalidatedRequestValues requestValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.HttpCookieCollection Cookies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.HttpFileCollectionBase Files { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.Specialized.NameValueCollection Form { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.Specialized.NameValueCollection Headers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string this[string field] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string Path { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string PathInfo { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.Specialized.NameValueCollection QueryString { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string RawUrl { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Uri Url { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public static partial class VirtualPathUtility | |
{ | |
public static string AppendTrailingSlash(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string Combine(string basePath, string relativePath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string GetDirectory(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string GetExtension(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string GetFileName(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool IsAbsolute(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool IsAppRelative(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string MakeRelative(string fromPath, string toPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string RemoveTrailingSlash(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string ToAbsolute(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string ToAbsolute(string virtualPath, string applicationPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string ToAppRelative(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string ToAppRelative(string virtualPath, string applicationPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class WebPageTraceListener : System.Diagnostics.TraceListener | |
{ | |
public WebPageTraceListener() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, string format, params object[] args) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Write(string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Write(string message, string category) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void WriteLine(string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void WriteLine(string message, string category) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class XmlSiteMapProvider : System.Web.StaticSiteMapProvider, System.IDisposable | |
{ | |
public XmlSiteMapProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.SiteMapNode CurrentNode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.SiteMapNode RootNode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected internal override void AddNode(System.Web.SiteMapNode node, System.Web.SiteMapNode parentNode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void AddProvider(string providerName, System.Web.SiteMapNode parentNode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.SiteMapNode BuildSiteMap() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Dispose() { } | |
protected virtual void Dispose(bool disposing) { } | |
public override System.Web.SiteMapNode FindSiteMapNode(string rawUrl) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.SiteMapNode FindSiteMapNodeFromKey(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.SiteMapNodeCollection GetChildNodes(System.Web.SiteMapNode node) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.SiteMapNode GetParentNode(System.Web.SiteMapNode node) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal override System.Web.SiteMapNode GetRootNodeCore() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection attributes) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal override void RemoveNode(System.Web.SiteMapNode node) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void RemoveProvider(string providerName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
} | |
namespace System.Web.Caching | |
{ | |
public sealed partial class AggregateCacheDependency : System.Web.Caching.CacheDependency | |
{ | |
public AggregateCacheDependency() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Add(params System.Web.Caching.CacheDependency[] dependencies) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void DependencyDispose() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string[] GetFileDependencies() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetUniqueID() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class Cache : System.Collections.IEnumerable | |
{ | |
public static readonly System.DateTime NoAbsoluteExpiration; | |
public static readonly System.TimeSpan NoSlidingExpiration; | |
public Cache() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public long EffectivePercentagePhysicalMemoryLimit { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public long EffectivePrivateBytesLimit { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object Add(string key, object value, System.Web.Caching.CacheDependency dependencies, System.DateTime absoluteExpiration, System.TimeSpan slidingExpiration, System.Web.Caching.CacheItemPriority priority, System.Web.Caching.CacheItemRemovedCallback onRemoveCallback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object Get(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.IDictionaryEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Insert(string key, object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Insert(string key, object value, System.Web.Caching.CacheDependency dependencies) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Insert(string key, object value, System.Web.Caching.CacheDependency dependencies, System.DateTime absoluteExpiration, System.TimeSpan slidingExpiration) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Insert(string key, object value, System.Web.Caching.CacheDependency dependencies, System.DateTime absoluteExpiration, System.TimeSpan slidingExpiration, System.Web.Caching.CacheItemPriority priority, System.Web.Caching.CacheItemRemovedCallback onRemoveCallback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Insert(string key, object value, System.Web.Caching.CacheDependency dependencies, System.DateTime absoluteExpiration, System.TimeSpan slidingExpiration, System.Web.Caching.CacheItemUpdateCallback onUpdateCallback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object Remove(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class CacheDependency : System.IDisposable | |
{ | |
protected CacheDependency() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public CacheDependency(string filename) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public CacheDependency(string filename, System.DateTime start) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public CacheDependency(string[] filenames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public CacheDependency(string[] filenames, System.DateTime start) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public CacheDependency(string[] filenames, string[] cachekeys) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public CacheDependency(string[] filenames, string[] cachekeys, System.DateTime start) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public CacheDependency(string[] filenames, string[] cachekeys, System.Web.Caching.CacheDependency dependency) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public CacheDependency(string[] filenames, string[] cachekeys, System.Web.Caching.CacheDependency dependency, System.DateTime start) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool HasChanged { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.DateTime UtcLastModified { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected virtual void DependencyDispose() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Dispose() { } | |
protected internal void FinishInit() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string[] GetFileDependencies() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GetUniqueID() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void ItemRemoved() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void KeepDependenciesAlive() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected void NotifyDependencyChanged(object sender, System.EventArgs e) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetCacheDependencyChanged(System.Action<object, System.EventArgs> dependencyChangedAction) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected void SetUtcLastModified(System.DateTime utcLastModified) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool TakeOwnership() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class CacheInsertOptions | |
{ | |
public CacheInsertOptions() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.DateTime AbsoluteExpiration { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Caching.CacheDependency Dependencies { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Caching.CacheItemRemovedCallback OnRemovedCallback { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Caching.CacheItemPriority Priority { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.TimeSpan SlidingExpiration { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public enum CacheItemPriority | |
{ | |
Low = 1, | |
BelowNormal = 2, | |
Default = 3, | |
Normal = 3, | |
AboveNormal = 4, | |
High = 5, | |
NotRemovable = 6, | |
} | |
public delegate void CacheItemRemovedCallback(string key, object value, System.Web.Caching.CacheItemRemovedReason reason); | |
public enum CacheItemRemovedReason | |
{ | |
Removed = 1, | |
Expired = 2, | |
Underused = 3, | |
DependencyChanged = 4, | |
} | |
public delegate void CacheItemUpdateCallback(string key, System.Web.Caching.CacheItemUpdateReason reason, out object expensiveObject, out System.Web.Caching.CacheDependency dependency, out System.DateTime absoluteExpiration, out System.TimeSpan slidingExpiration); | |
public enum CacheItemUpdateReason | |
{ | |
Expired = 1, | |
DependencyChanged = 2, | |
} | |
public abstract partial class CacheStoreProvider : System.Configuration.Provider.ProviderBase, System.IDisposable | |
{ | |
protected CacheStoreProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract long ItemCount { get; } | |
public abstract long SizeInBytes { get; } | |
public abstract object Add(string key, object item, System.Web.Caching.CacheInsertOptions options); | |
public abstract bool AddDependent(string key, System.Web.Caching.CacheDependency dependency, out System.DateTime utcLastUpdated); | |
public abstract void Dispose(); | |
public abstract object Get(string key); | |
public abstract System.Collections.IDictionaryEnumerator GetEnumerator(); | |
public abstract new void Initialize(string name, System.Collections.Specialized.NameValueCollection config); | |
public abstract void Insert(string key, object item, System.Web.Caching.CacheInsertOptions options); | |
public abstract object Remove(string key); | |
public abstract object Remove(string key, System.Web.Caching.CacheItemRemovedReason reason); | |
public abstract void RemoveDependent(string key, System.Web.Caching.CacheDependency dependency); | |
public abstract long Trim(int percent); | |
} | |
public sealed partial class DatabaseNotEnabledForNotificationException : System.SystemException | |
{ | |
public DatabaseNotEnabledForNotificationException() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public DatabaseNotEnabledForNotificationException(string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public DatabaseNotEnabledForNotificationException(string message, System.Exception innerException) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=System.Web.AspNetHostingPermissionLevel.Unrestricted)] | |
public partial class FileResponseElement : System.Web.Caching.ResponseElement | |
{ | |
public FileResponseElement(string path, long offset, long length) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public long Length { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public long Offset { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Path { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class HeaderElement | |
{ | |
public HeaderElement(string name, string value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Value { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial interface IOutputCacheEntry | |
{ | |
System.Collections.Generic.List<System.Web.Caching.HeaderElement> HeaderElements { get; set; } | |
System.Collections.Generic.List<System.Web.Caching.ResponseElement> ResponseElements { get; set; } | |
} | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=System.Web.AspNetHostingPermissionLevel.Unrestricted)] | |
public partial class MemoryResponseElement : System.Web.Caching.ResponseElement | |
{ | |
public MemoryResponseElement(byte[] buffer, long length) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public byte[] Buffer { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public long Length { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public static partial class OutputCache | |
{ | |
public static string DefaultProviderName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.Caching.OutputCacheProviderCollection Providers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static object Deserialize(System.IO.Stream stream) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void Serialize(System.IO.Stream stream, object data) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class OutputCacheProvider : System.Configuration.Provider.ProviderBase | |
{ | |
protected OutputCacheProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract object Add(string key, object entry, System.DateTime utcExpiry); | |
public abstract object Get(string key); | |
public abstract void Remove(string key); | |
public abstract void Set(string key, object entry, System.DateTime utcExpiry); | |
} | |
public abstract partial class OutputCacheProviderAsync : System.Web.Caching.OutputCacheProvider | |
{ | |
protected OutputCacheProviderAsync() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract System.Threading.Tasks.Task<object> AddAsync(string key, object entry, System.DateTime utcExpiry); | |
public abstract System.Threading.Tasks.Task<object> GetAsync(string key); | |
public abstract System.Threading.Tasks.Task RemoveAsync(string key); | |
public abstract System.Threading.Tasks.Task SetAsync(string key, object entry, System.DateTime utcExpiry); | |
} | |
public sealed partial class OutputCacheProviderCollection : System.Configuration.Provider.ProviderCollection | |
{ | |
public OutputCacheProviderCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public new System.Web.Caching.OutputCacheProvider this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void Add(System.Configuration.Provider.ProviderBase provider) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void CopyTo(System.Web.Caching.OutputCacheProvider[] array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public static partial class OutputCacheUtility | |
{ | |
public static System.Web.Caching.CacheDependency CreateCacheDependency(System.Web.HttpResponse response) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void FlushKernelCache(string cacheKey) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Collections.ArrayList GetContentBuffers(System.Web.HttpResponse response) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.Web.HttpCacheValidateHandler, object>> GetValidationCallbacks(System.Web.HttpResponse response) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void SetContentBuffers(System.Web.HttpResponse response, System.Collections.ArrayList buffers) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string SetupKernelCaching(string originalCacheUrl, System.Web.HttpResponse response) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class ResponseElement | |
{ | |
protected ResponseElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class SqlCacheDependency : System.Web.Caching.CacheDependency | |
{ | |
public SqlCacheDependency(System.Data.SqlClient.SqlCommand sqlCmd) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public SqlCacheDependency(string databaseEntryName, string tableName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Caching.CacheDependency CreateOutputCacheDependency(string dependency) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void DependencyDispose() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetUniqueID() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=System.Web.AspNetHostingPermissionLevel.High)] | |
public static partial class SqlCacheDependencyAdmin | |
{ | |
public static void DisableNotifications(string connectionString) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void DisableTableForNotifications(string connectionString, string table) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void DisableTableForNotifications(string connectionString, string[] tables) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void EnableNotifications(string connectionString) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void EnableTableForNotifications(string connectionString, string table) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void EnableTableForNotifications(string connectionString, string[] tables) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string[] GetTablesEnabledForNotifications(string connectionString) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=System.Web.AspNetHostingPermissionLevel.Unrestricted)] | |
public partial class SubstitutionResponseElement : System.Web.Caching.ResponseElement | |
{ | |
public SubstitutionResponseElement(System.Web.HttpResponseSubstitutionCallback callback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.HttpResponseSubstitutionCallback Callback { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class TableNotEnabledForNotificationException : System.SystemException | |
{ | |
public TableNotEnabledForNotificationException() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public TableNotEnabledForNotificationException(string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public TableNotEnabledForNotificationException(string message, System.Exception innerException) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
} | |
namespace System.Web.Compilation | |
{ | |
[System.Web.Compilation.ExpressionEditorAttribute("System.Web.UI.Design.AppSettingsExpressionEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] | |
[System.Web.Compilation.ExpressionPrefixAttribute("AppSettings")] | |
public partial class AppSettingsExpressionBuilder : System.Web.Compilation.ExpressionBuilder | |
{ | |
public AppSettingsExpressionBuilder() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool SupportsEvaluate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object EvaluateExpression(object target, System.Web.UI.BoundPropertyEntry entry, object parsedData, System.Web.Compilation.ExpressionBuilderContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static object GetAppSetting(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static object GetAppSetting(string key, System.Type targetType, string propertyName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.CodeDom.CodeExpression GetCodeExpression(System.Web.UI.BoundPropertyEntry entry, object parsedData, System.Web.Compilation.ExpressionBuilderContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class AssemblyBuilder | |
{ | |
internal AssemblyBuilder() { } | |
public System.CodeDom.Compiler.CodeDomProvider CodeDomProvider { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void AddAssemblyReference(System.Reflection.Assembly a) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddCodeCompileUnit(System.Web.Compilation.BuildProvider buildProvider, System.CodeDom.CodeCompileUnit compileUnit) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.IO.TextWriter CreateCodeFile(System.Web.Compilation.BuildProvider buildProvider) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.IO.Stream CreateEmbeddedResource(System.Web.Compilation.BuildProvider buildProvider, string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void GenerateTypeFactory(string typeName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetTempFilePhysicalPath(string extension) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class BuildDependencySet | |
{ | |
internal BuildDependencySet() { } | |
public string HashCode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.IEnumerable VirtualPaths { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class BuildManager | |
{ | |
internal BuildManager() { } | |
public static bool? BatchCompilationEnabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Collections.IList CodeAssemblies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool IsPrecompiledApp { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool IsUpdatablePrecompiledApp { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Runtime.Versioning.FrameworkName TargetFramework { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static void AddCompilationDependency(string dependency) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void AddReferencedAssembly(System.Reflection.Assembly assembly) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.IO.Stream CreateCachedFile(string fileName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static object CreateInstanceFromVirtualPath(string virtualPath, System.Type requiredBaseType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Compilation.BuildDependencySet GetCachedBuildDependencySet(System.Web.HttpContext context, string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Compilation.BuildDependencySet GetCachedBuildDependencySet(System.Web.HttpContext context, string virtualPath, bool ensureIsUpToDate) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Reflection.Assembly GetCompiledAssembly(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string GetCompiledCustomString(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Type GetCompiledType(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Type GetGlobalAsaxType() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Util.IWebObjectFactory GetObjectFactory(string virtualPath, bool throwIfNotFound) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Collections.ICollection GetReferencedAssemblies() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Type GetType(string typeName, bool throwOnError) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Type GetType(string typeName, bool throwOnError, bool ignoreCase) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Collections.ICollection GetVirtualPathDependencies(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.IO.Stream ReadCachedFile(string fileName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class BuildManagerHostUnloadEventArgs : System.EventArgs | |
{ | |
public BuildManagerHostUnloadEventArgs(System.Web.ApplicationShutdownReason reason) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.ApplicationShutdownReason Reason { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public delegate void BuildManagerHostUnloadEventHandler(object sender, System.Web.Compilation.BuildManagerHostUnloadEventArgs e); | |
public abstract partial class BuildProvider | |
{ | |
protected BuildProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.Compilation.CompilerType CodeCompilerType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected System.Collections.ICollection ReferencedAssemblies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected internal string VirtualPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Collections.ICollection VirtualPathDependencies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual void GenerateCode(System.Web.Compilation.AssemblyBuilder assemblyBuilder) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal virtual System.CodeDom.CodeCompileUnit GetCodeCompileUnit(out System.Collections.IDictionary linePragmasTable) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GetCustomString(System.CodeDom.Compiler.CompilerResults results) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected System.Web.Compilation.CompilerType GetDefaultCompilerType() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected System.Web.Compilation.CompilerType GetDefaultCompilerTypeForLanguage(string language) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Type GetGeneratedType(System.CodeDom.Compiler.CompilerResults results) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.Compilation.BuildProviderResultFlags GetResultFlags(System.CodeDom.Compiler.CompilerResults results) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected System.IO.TextReader OpenReader() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected System.IO.TextReader OpenReader(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected System.IO.Stream OpenStream() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected System.IO.Stream OpenStream(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void ProcessCompileErrors(System.CodeDom.Compiler.CompilerResults results) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RegisterBuildProvider(string extension, System.Type providerType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.FlagsAttribute] | |
public enum BuildProviderAppliesTo | |
{ | |
Web = 1, | |
Code = 2, | |
Resources = 4, | |
All = 7, | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=false)] | |
public sealed partial class BuildProviderAppliesToAttribute : System.Attribute | |
{ | |
public BuildProviderAppliesToAttribute(System.Web.Compilation.BuildProviderAppliesTo appliesTo) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Compilation.BuildProviderAppliesTo AppliesTo { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.FlagsAttribute] | |
public enum BuildProviderResultFlags | |
{ | |
Default = 0, | |
ShutdownAppDomainOnChange = 1, | |
} | |
public sealed partial class ClientBuildManager : System.MarshalByRefObject, System.IDisposable | |
{ | |
public ClientBuildManager(string appVirtualDir, string appPhysicalSourceDir) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ClientBuildManager(string appVirtualDir, string appPhysicalSourceDir, string appPhysicalTargetDir) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ClientBuildManager(string appVirtualDir, string appPhysicalSourceDir, string appPhysicalTargetDir, System.Web.Compilation.ClientBuildManagerParameter parameter) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ClientBuildManager(string appVirtualDir, string appPhysicalSourceDir, string appPhysicalTargetDir, System.Web.Compilation.ClientBuildManagerParameter parameter, System.ComponentModel.TypeDescriptionProvider typeDescriptionProvider) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string CodeGenDir { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsHostCreated { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public event System.Web.Compilation.BuildManagerHostUnloadEventHandler AppDomainShutdown { add { } remove { } } | |
public event System.EventHandler AppDomainStarted { add { } remove { } } | |
public event System.Web.Compilation.BuildManagerHostUnloadEventHandler AppDomainUnloaded { add { } remove { } } | |
public void CompileApplicationDependencies() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void CompileFile(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void CompileFile(string virtualPath, System.Web.Compilation.ClientBuildManagerCallback callback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Hosting.IRegisteredObject CreateObject(System.Type type, bool failIfExists) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GenerateCode(string virtualPath, string virtualFileString, out System.Collections.IDictionary linePragmasTable) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.CodeDom.CodeCompileUnit GenerateCodeCompileUnit(string virtualPath, string virtualFileString, out System.Type codeDomProviderType, out System.CodeDom.Compiler.CompilerParameters compilerParameters, out System.Collections.IDictionary linePragmasTable) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.CodeDom.CodeCompileUnit GenerateCodeCompileUnit(string virtualPath, out System.Type codeDomProviderType, out System.CodeDom.Compiler.CompilerParameters compilerParameters, out System.Collections.IDictionary linePragmasTable) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string[] GetAppDomainShutdownDirectories() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.IDictionary GetBrowserDefinitions() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void GetCodeDirectoryInformation(string virtualCodeDir, out System.Type codeDomProviderType, out System.CodeDom.Compiler.CompilerParameters compilerParameters, out string generatedFilesDir) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Type GetCompiledType(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void GetCompilerParameters(string virtualPath, out System.Type codeDomProviderType, out System.CodeDom.Compiler.CompilerParameters compilerParameters) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetGeneratedFileVirtualPath(string filePath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetGeneratedSourceFile(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string[] GetTopLevelAssemblyReferences(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string[] GetVirtualCodeDirectories() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object InitializeLifetimeService() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsCodeAssembly(string assemblyName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void PrecompileApplication() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void PrecompileApplication(System.Web.Compilation.ClientBuildManagerCallback callback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void PrecompileApplication(System.Web.Compilation.ClientBuildManagerCallback callback, bool forceCleanBuild) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.IDisposable.Dispose() { } | |
public bool Unload() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class ClientBuildManagerCallback : System.MarshalByRefObject | |
{ | |
public ClientBuildManagerCallback() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object InitializeLifetimeService() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void ReportCompilerError(System.CodeDom.Compiler.CompilerError error) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void ReportParseError(System.Web.ParserError error) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void ReportProgress(string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class ClientBuildManagerParameter | |
{ | |
public ClientBuildManagerParameter() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.Generic.List<string> ExcludedVirtualPaths { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Compilation.PrecompilationFlags PrecompilationFlags { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string StrongNameKeyContainer { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string StrongNameKeyFile { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class CompilerType | |
{ | |
internal CompilerType() { } | |
public System.Type CodeDomProviderType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.CodeDom.Compiler.CompilerParameters CompilerParameters { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Equals(object o) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetHashCode() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Web.Compilation.ExpressionEditorAttribute("System.Web.UI.Design.ConnectionStringsExpressionEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] | |
[System.Web.Compilation.ExpressionPrefixAttribute("ConnectionStrings")] | |
public partial class ConnectionStringsExpressionBuilder : System.Web.Compilation.ExpressionBuilder | |
{ | |
public ConnectionStringsExpressionBuilder() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool SupportsEvaluate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object EvaluateExpression(object target, System.Web.UI.BoundPropertyEntry entry, object parsedData, System.Web.Compilation.ExpressionBuilderContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.CodeDom.CodeExpression GetCodeExpression(System.Web.UI.BoundPropertyEntry entry, object parsedData, System.Web.Compilation.ExpressionBuilderContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string GetConnectionString(string connectionStringName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string GetConnectionStringProviderName(string connectionStringName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object ParseExpression(string expression, System.Type propertyType, System.Web.Compilation.ExpressionBuilderContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class ControlBuilderInterceptor | |
{ | |
protected ControlBuilderInterceptor() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void OnProcessGeneratedCode(System.Web.UI.ControlBuilder controlBuilder, System.CodeDom.CodeCompileUnit codeCompileUnit, System.CodeDom.CodeTypeDeclaration baseType, System.CodeDom.CodeTypeDeclaration derivedType, System.CodeDom.CodeMemberMethod buildMethod, System.CodeDom.CodeMemberMethod dataBindingMethod, System.Collections.IDictionary additionalState) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void PreControlBuilderInit(System.Web.UI.ControlBuilder controlBuilder, System.Web.UI.TemplateParser parser, System.Web.UI.ControlBuilder parentBuilder, System.Type type, string tagName, string id, System.Collections.IDictionary attributes, System.Collections.IDictionary additionalState) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Class)] | |
public sealed partial class DesignTimeResourceProviderFactoryAttribute : System.Attribute | |
{ | |
public DesignTimeResourceProviderFactoryAttribute(string factoryTypeName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public DesignTimeResourceProviderFactoryAttribute(System.Type factoryType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string FactoryTypeName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsDefaultAttribute() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class ExpressionBuilder | |
{ | |
protected ExpressionBuilder() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool SupportsEvaluate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual object EvaluateExpression(object target, System.Web.UI.BoundPropertyEntry entry, object parsedData, System.Web.Compilation.ExpressionBuilderContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract System.CodeDom.CodeExpression GetCodeExpression(System.Web.UI.BoundPropertyEntry entry, object parsedData, System.Web.Compilation.ExpressionBuilderContext context); | |
public virtual object ParseExpression(string expression, System.Type propertyType, System.Web.Compilation.ExpressionBuilderContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ExpressionBuilderContext | |
{ | |
public ExpressionBuilderContext(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ExpressionBuilderContext(System.Web.UI.TemplateControl templateControl) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.UI.TemplateControl TemplateControl { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string VirtualPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=false)] | |
public sealed partial class ExpressionEditorAttribute : System.Attribute | |
{ | |
public ExpressionEditorAttribute(string typeName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ExpressionEditorAttribute(System.Type type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string EditorTypeName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Equals(object obj) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetHashCode() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=false)] | |
public sealed partial class ExpressionPrefixAttribute : System.Attribute | |
{ | |
public ExpressionPrefixAttribute(string expressionPrefix) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string ExpressionPrefix { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.FlagsAttribute] | |
public enum FolderLevelBuildProviderAppliesTo | |
{ | |
None = 0, | |
Code = 1, | |
WebReferences = 2, | |
LocalResources = 4, | |
GlobalResources = 8, | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=false)] | |
public sealed partial class FolderLevelBuildProviderAppliesToAttribute : System.Attribute | |
{ | |
public FolderLevelBuildProviderAppliesToAttribute(System.Web.Compilation.FolderLevelBuildProviderAppliesTo appliesTo) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Compilation.FolderLevelBuildProviderAppliesTo AppliesTo { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=System.Web.AspNetHostingPermissionLevel.High)] | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=System.Web.AspNetHostingPermissionLevel.High)] | |
public partial interface IAssemblyPostProcessor : System.IDisposable | |
{ | |
void PostProcessAssembly(string path); | |
} | |
public partial interface IImplicitResourceProvider | |
{ | |
System.Collections.ICollection GetImplicitResourceKeys(string keyPrefix); | |
object GetObject(System.Web.Compilation.ImplicitResourceKey key, System.Globalization.CultureInfo culture); | |
} | |
public sealed partial class ImplicitResourceKey | |
{ | |
public ImplicitResourceKey() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ImplicitResourceKey(string filter, string keyPrefix, string property) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string Filter { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string KeyPrefix { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Property { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial interface IResourceProvider | |
{ | |
System.Resources.IResourceReader ResourceReader { get; } | |
object GetObject(string resourceKey, System.Globalization.CultureInfo culture); | |
} | |
public sealed partial class LinePragmaCodeInfo | |
{ | |
public LinePragmaCodeInfo() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public LinePragmaCodeInfo(int startLine, int startColumn, int startGeneratedColumn, int codeLength, bool isCodeNugget) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int CodeLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsCodeNugget { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int StartColumn { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int StartGeneratedColumn { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int StartLine { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.FlagsAttribute] | |
public enum PrecompilationFlags | |
{ | |
Default = 0, | |
Updatable = 1, | |
OverwriteTarget = 2, | |
ForceDebug = 4, | |
Clean = 8, | |
CodeAnalysis = 16, | |
AllowPartiallyTrustedCallers = 32, | |
DelaySign = 64, | |
FixedNames = 128, | |
IgnoreBadImageFormatException = 256, | |
} | |
[System.Web.Compilation.ExpressionEditorAttribute("System.Web.UI.Design.ResourceExpressionEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] | |
[System.Web.Compilation.ExpressionPrefixAttribute("Resources")] | |
public partial class ResourceExpressionBuilder : System.Web.Compilation.ExpressionBuilder | |
{ | |
public ResourceExpressionBuilder() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool SupportsEvaluate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object EvaluateExpression(object target, System.Web.UI.BoundPropertyEntry entry, object parsedData, System.Web.Compilation.ExpressionBuilderContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.CodeDom.CodeExpression GetCodeExpression(System.Web.UI.BoundPropertyEntry entry, object parsedData, System.Web.Compilation.ExpressionBuilderContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Compilation.ResourceExpressionFields ParseExpression(string expression) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object ParseExpression(string expression, System.Type propertyType, System.Web.Compilation.ExpressionBuilderContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ResourceExpressionFields | |
{ | |
internal ResourceExpressionFields() { } | |
public string ClassKey { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ResourceKey { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public abstract partial class ResourceProviderFactory | |
{ | |
protected ResourceProviderFactory() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract System.Web.Compilation.IResourceProvider CreateGlobalResourceProvider(string classKey); | |
public abstract System.Web.Compilation.IResourceProvider CreateLocalResourceProvider(string virtualPath); | |
} | |
[System.Web.Compilation.ExpressionEditorAttribute("System.Web.UI.Design.RouteUrlExpressionEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] | |
[System.Web.Compilation.ExpressionPrefixAttribute("Routes")] | |
public partial class RouteUrlExpressionBuilder : System.Web.Compilation.ExpressionBuilder | |
{ | |
public RouteUrlExpressionBuilder() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool SupportsEvaluate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object EvaluateExpression(object target, System.Web.UI.BoundPropertyEntry entry, object parsedData, System.Web.Compilation.ExpressionBuilderContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.CodeDom.CodeExpression GetCodeExpression(System.Web.UI.BoundPropertyEntry entry, object parsedData, System.Web.Compilation.ExpressionBuilderContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string GetRouteUrl(System.Web.UI.Control control, string expression) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool TryParseRouteExpression(string expression, System.Web.Routing.RouteValueDictionary routeValues, out string routeName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Web.Compilation.ExpressionEditorAttribute("System.Web.UI.Design.RouteValueExpressionEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] | |
[System.Web.Compilation.ExpressionPrefixAttribute("Routes")] | |
public partial class RouteValueExpressionBuilder : System.Web.Compilation.ExpressionBuilder | |
{ | |
public RouteValueExpressionBuilder() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool SupportsEvaluate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object EvaluateExpression(object target, System.Web.UI.BoundPropertyEntry entry, object parsedData, System.Web.Compilation.ExpressionBuilderContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.CodeDom.CodeExpression GetCodeExpression(System.Web.UI.BoundPropertyEntry entry, object parsedData, System.Web.Compilation.ExpressionBuilderContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static object GetRouteValue(System.Web.UI.Page page, string key, System.Type controlType, string propertyName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
} | |
namespace System.Web.Configuration | |
{ | |
public partial class AdapterDictionary : System.Collections.Specialized.OrderedDictionary | |
{ | |
public AdapterDictionary() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class AnonymousIdentificationSection : System.Configuration.ConfigurationSection | |
{ | |
public AnonymousIdentificationSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.HttpCookieMode Cookieless { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string CookieName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string CookiePath { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Security.CookieProtection CookieProtection { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool CookieRequireSSL { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool CookieSlidingExpiration { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.TimeSpanMinutesOrInfiniteConverter))] | |
[System.Configuration.TimeSpanValidatorAttribute(MinValueString="00:00:00", MaxValueString="10675199.02:48:05.4775807")] | |
public System.TimeSpan CookieTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Domain { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Enabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.AssemblyInfo))] | |
public sealed partial class AssemblyCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public AssemblyCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.AssemblyInfo this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.AssemblyInfo this[string assemblyName] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.AssemblyInfo assemblyInformation) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class AssemblyInfo : System.Configuration.ConfigurationElement | |
{ | |
public AssemblyInfo(string assemblyName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Assembly { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.FlagsAttribute] | |
public enum AsyncPreloadModeFlags | |
{ | |
None = 0, | |
Form = 1, | |
FormMultiPart = 2, | |
AllFormTypes = 3, | |
NonForm = 4, | |
All = 7, | |
} | |
public enum AuthenticationMode | |
{ | |
None = 0, | |
Windows = 1, | |
Passport = 2, | |
Forms = 3, | |
} | |
public sealed partial class AuthenticationSection : System.Configuration.ConfigurationSection | |
{ | |
public AuthenticationSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.FormsAuthenticationConfiguration Forms { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.AuthenticationMode Mode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.PassportAuthentication Passport { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override void Reset(System.Configuration.ConfigurationElement parentElement) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class AuthorizationRule : System.Configuration.ConfigurationElement | |
{ | |
public AuthorizationRule(System.Web.Configuration.AuthorizationRuleAction action) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.AuthorizationRuleAction Action { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.CommaDelimitedStringCollectionConverter))] | |
public System.Collections.Specialized.StringCollection Roles { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.CommaDelimitedStringCollectionConverter))] | |
public System.Collections.Specialized.StringCollection Users { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.CommaDelimitedStringCollectionConverter))] | |
public System.Collections.Specialized.StringCollection Verbs { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Equals(object obj) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetHashCode() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override bool IsModified() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void PostDeserialize() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void PreSerialize(System.Xml.XmlWriter writer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void Reset(System.Configuration.ConfigurationElement parentElement) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void ResetModified() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override bool SerializeElement(System.Xml.XmlWriter writer, bool serializeCollectionKey) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void SetReadOnly() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void Unmerge(System.Configuration.ConfigurationElement sourceElement, System.Configuration.ConfigurationElement parentElement, System.Configuration.ConfigurationSaveMode saveMode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum AuthorizationRuleAction | |
{ | |
Deny = 0, | |
Allow = 1, | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.AuthorizationRule), AddItemName="allow,deny", CollectionType=System.Configuration.ConfigurationElementCollectionType.BasicMapAlternate)] | |
public sealed partial class AuthorizationRuleCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public AuthorizationRuleCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Configuration.ConfigurationElementCollectionType CollectionType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override string ElementName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.AuthorizationRule this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.AuthorizationRule rule) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement(string elementName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.AuthorizationRule Get(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int IndexOf(System.Web.Configuration.AuthorizationRule rule) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override bool IsElementName(string elementname) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(System.Web.Configuration.AuthorizationRule rule) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Set(int index, System.Web.Configuration.AuthorizationRule rule) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class AuthorizationSection : System.Configuration.ConfigurationSection | |
{ | |
public AuthorizationSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.AuthorizationRuleCollection Rules { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override void PostDeserialize() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class BrowserCapabilitiesCodeGenerator | |
{ | |
public BrowserCapabilitiesCodeGenerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void Create() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected void ProcessBrowserFiles(bool useVirtualPath, string virtualDir) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool Uninstall() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class BrowserCapabilitiesFactory : System.Web.Configuration.BrowserCapabilitiesFactoryBase | |
{ | |
public BrowserCapabilitiesFactory() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void BlackberryProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void BlackberryProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void ChromeProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void ChromeProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void ConfigureBrowserCapabilities(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void CpuProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void CpuProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void CrawlerProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void CrawlerProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void DefaultDefaultProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void DefaultProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void DefaultProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void DefaultWmlProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void DefaultXhtmlmpProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Firefox35ProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Firefox35ProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Firefox3plusProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Firefox3plusProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Firefox3ProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Firefox3ProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void FirefoxProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void FirefoxProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void GenericdownlevelProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void GenericdownlevelProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Ie10plusProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Ie10plusProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Ie6plusProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Ie6plusProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Ie6to9ProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Ie6to9ProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Ie7ProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Ie7ProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Ie8ProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Ie8ProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Ie9ProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Ie9ProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void IebetaProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void IebetaProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void IemobileProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void IemobileProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void IeProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void IeProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void InternetexplorerProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void InternetexplorerProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void IpadProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void IpadProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void IphoneProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void IphoneProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void IpodProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void IpodProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void MonoProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void MonoProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void MozillaProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void MozillaProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Opera10ProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Opera10ProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Opera8plusProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Opera8plusProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Opera8to9ProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Opera8to9ProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void OperaminiProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void OperaminiProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void OperamobileProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void OperamobileProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void OperaProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void OperaProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void OSProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void OSProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void PixelsProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void PixelsProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Platformmac68kProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Platformmac68kProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void PlatformmacppcProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void PlatformmacppcProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void PlatformProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void PlatformProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void PlatformunixProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void PlatformunixProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void PlatformwebtvProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void PlatformwebtvProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Platformwin16ProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Platformwin16ProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Platformwin2000aProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Platformwin2000aProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Platformwin2000bProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Platformwin2000bProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Platformwin95ProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Platformwin95ProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Platformwin98ProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Platformwin98ProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void PlatformwinceProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void PlatformwinceProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void PlatformwinntProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void PlatformwinntProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void PlatformwinxpProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void PlatformwinxpProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void PopulateBrowserElements(System.Collections.IDictionary dictionary) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void PopulateMatchedHeaders(System.Collections.IDictionary dictionary) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Safari3plusProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Safari3plusProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Safari3to4ProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Safari3to4ProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Safari4ProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Safari4ProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void SafariProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void SafariProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void UcbrowserProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void UcbrowserProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void VoiceProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void VoiceProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void WebkitmobileProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void WebkitmobileProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void WebkitProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void WebkitProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Win16ProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Win16ProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Win32ProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Win32ProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void WindowsphoneProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void WindowsphoneProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void WinProcessBrowsers(bool ignoreApplicationBrowsers, System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void WinProcessGateways(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class BrowserCapabilitiesFactoryBase | |
{ | |
public BrowserCapabilitiesFactoryBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected System.Collections.IDictionary BrowserElements { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected System.Collections.IDictionary MatchedHeaders { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual void ConfigureBrowserCapabilities(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void ConfigureCustomCapabilities(System.Collections.Specialized.NameValueCollection headers, System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected bool IsBrowserUnknown(System.Web.Configuration.HttpCapabilitiesBase browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void PopulateBrowserElements(System.Collections.IDictionary dictionary) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void PopulateMatchedHeaders(System.Collections.IDictionary dictionary) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.BufferModeSettings))] | |
public sealed partial class BufferModesCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public BufferModesCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.BufferModeSettings this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.BufferModeSettings this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.BufferModeSettings bufferModeSettings) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class BufferModeSettings : System.Configuration.ConfigurationElement | |
{ | |
public BufferModeSettings(string name, int maxBufferSize, int maxFlushSize, int urgentFlushThreshold, System.TimeSpan regularFlushInterval, System.TimeSpan urgentFlushInterval, int maxBufferThreads) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElementProperty ElementProperty { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteIntConverter))] | |
[System.Configuration.IntegerValidatorAttribute(MinValue=1)] | |
public int MaxBufferSize { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteIntConverter))] | |
[System.Configuration.IntegerValidatorAttribute(MinValue=1)] | |
public int MaxBufferThreads { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteIntConverter))] | |
[System.Configuration.IntegerValidatorAttribute(MinValue=1)] | |
public int MaxFlushSize { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteTimeSpanConverter))] | |
[System.Configuration.TimeSpanValidatorAttribute(MinValueString="00:00:00", MaxValueString="10675199.02:48:05.4775807")] | |
public System.TimeSpan RegularFlushInterval { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteTimeSpanConverter))] | |
public System.TimeSpan UrgentFlushInterval { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteIntConverter))] | |
[System.Configuration.IntegerValidatorAttribute(MinValue=1)] | |
public int UrgentFlushThreshold { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class BuildProvider : System.Configuration.ConfigurationElement | |
{ | |
public BuildProvider(string extension, string type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Extension { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Type { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Equals(object provider) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetHashCode() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.BuildProvider))] | |
public sealed partial class BuildProviderCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public BuildProviderCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.BuildProvider this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.BuildProvider this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.BuildProvider buildProvider) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class CacheSection : System.Configuration.ConfigurationSection | |
{ | |
public CacheSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string DefaultProvider { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool DisableExpiration { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool DisableMemoryCollection { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=0, MaxValue=100)] | |
public int PercentagePhysicalMemoryUsedLimit { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.LongValidatorAttribute(MinValue=(long)0)] | |
public long PrivateBytesLimit { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteTimeSpanConverter))] | |
public System.TimeSpan PrivateBytesPollTime { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Configuration.ProviderSettingsCollection Providers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class ClientTarget : System.Configuration.ConfigurationElement | |
{ | |
public ClientTarget(string alias, string userAgent) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Alias { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string UserAgent { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.ClientTarget))] | |
public sealed partial class ClientTargetCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public ClientTargetCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string[] AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.ClientTarget this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.ClientTarget this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.ClientTarget clientTarget) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetKey(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(System.Web.Configuration.ClientTarget clientTarget) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ClientTargetSection : System.Configuration.ConfigurationSection | |
{ | |
public ClientTargetSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.ClientTargetCollection ClientTargets { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.CodeSubDirectory), CollectionType=System.Configuration.ConfigurationElementCollectionType.BasicMap)] | |
public sealed partial class CodeSubDirectoriesCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public CodeSubDirectoriesCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Configuration.ConfigurationElementCollectionType CollectionType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override string ElementName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.CodeSubDirectory this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.CodeSubDirectory codeSubDirectory) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string directoryName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class CodeSubDirectory : System.Configuration.ConfigurationElement | |
{ | |
public CodeSubDirectory(string directoryName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.WhiteSpaceTrimStringConverter))] | |
public string DirectoryName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class CompilationSection : System.Configuration.ConfigurationSection | |
{ | |
public CompilationSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.AssemblyCollection Assemblies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string AssemblyPostProcessorType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Batch { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.TimeSpanSecondsOrInfiniteConverter))] | |
[System.Configuration.TimeSpanValidatorAttribute(MinValueString="00:00:00", MaxValueString="10675199.02:48:05.4775807")] | |
public System.TimeSpan BatchTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.BuildProviderCollection BuildProviders { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.CodeSubDirectoriesCollection CodeSubDirectories { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.CompilerCollection Compilers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ControlBuilderInterceptorType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Debug { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string DefaultLanguage { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool DisableObsoleteWarnings { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool EnablePrefetchOptimization { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Explicit { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.ExpressionBuilderCollection ExpressionBuilders { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.FolderLevelBuildProviderCollection FolderLevelBuildProviders { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int MaxBatchGeneratedFileSize { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int MaxBatchSize { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int MaxConcurrentCompilations { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int NumRecompilesBeforeAppRestart { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool OptimizeCompilations { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.ProfileGuidedOptimizationsFlags ProfileGuidedOptimizations { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Strict { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string TargetFramework { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string TempDirectory { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool UrlLinePragmas { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override object GetRuntimeObject() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void PostDeserialize() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void SetReadOnly() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class Compiler : System.Configuration.ConfigurationElement | |
{ | |
public Compiler(string compilerOptions, string extension, string language, string type, int warningLevel) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string CompilerOptions { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Extension { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Language { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Type { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=0, MaxValue=4)] | |
public int WarningLevel { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.Compiler), AddItemName="compiler", CollectionType=System.Configuration.ConfigurationElementCollectionType.BasicMap)] | |
public sealed partial class CompilerCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public CompilerCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string[] AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Configuration.ConfigurationElementCollectionType CollectionType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override string ElementName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.Compiler this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.Compiler this[string language] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.Compiler Get(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.Compiler Get(string language) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetKey(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class CustomError : System.Configuration.ConfigurationElement | |
{ | |
public CustomError(int statusCode, string redirect) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Redirect { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=100, MaxValue=999)] | |
public int StatusCode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Equals(object customError) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetHashCode() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.CustomError), AddItemName="error", CollectionType=System.Configuration.ConfigurationElementCollectionType.BasicMap)] | |
public sealed partial class CustomErrorCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public CustomErrorCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string[] AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Configuration.ConfigurationElementCollectionType CollectionType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override string ElementName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.CustomError this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.CustomError this[string statusCode] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.CustomError customError) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.CustomError Get(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.CustomError Get(string statusCode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetKey(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string statusCode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Set(System.Web.Configuration.CustomError customError) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum CustomErrorsMode | |
{ | |
RemoteOnly = 0, | |
On = 1, | |
Off = 2, | |
} | |
public enum CustomErrorsRedirectMode | |
{ | |
ResponseRedirect = 0, | |
ResponseRewrite = 1, | |
} | |
public sealed partial class CustomErrorsSection : System.Configuration.ConfigurationSection | |
{ | |
public CustomErrorsSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool AllowNestedErrors { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string DefaultRedirect { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.CustomErrorCollection Errors { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.CustomErrorsMode Mode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.CustomErrorsRedirectMode RedirectMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override void DeserializeSection(System.Xml.XmlReader reader) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void Reset(System.Configuration.ConfigurationElement parentElement) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class DeploymentSection : System.Configuration.ConfigurationSection | |
{ | |
public DeploymentSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Retail { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class EventMappingSettings : System.Configuration.ConfigurationElement | |
{ | |
public EventMappingSettings(string name, string type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public EventMappingSettings(string name, string type, int startEventCode, int endEventCode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=0)] | |
public int EndEventCode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=0)] | |
public int StartEventCode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Type { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.EventMappingSettings))] | |
public sealed partial class EventMappingSettingsCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public EventMappingSettingsCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.EventMappingSettings this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.EventMappingSettings this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.EventMappingSettings eventMappingSettings) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool Contains(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int IndexOf(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Insert(int index, System.Web.Configuration.EventMappingSettings eventMappingSettings) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ExpressionBuilder : System.Configuration.ConfigurationElement | |
{ | |
public ExpressionBuilder(string expressionPrefix, string theType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string ExpressionPrefix { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Type { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.ExpressionBuilder))] | |
public sealed partial class ExpressionBuilderCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public ExpressionBuilderCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.ExpressionBuilder this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.ExpressionBuilder this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.ExpressionBuilder buildProvider) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum FcnMode | |
{ | |
NotSet = 0, | |
Default = 1, | |
Disabled = 2, | |
Single = 3, | |
} | |
public sealed partial class FolderLevelBuildProvider : System.Configuration.ConfigurationElement | |
{ | |
public FolderLevelBuildProvider(string name, string type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Type { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Equals(object provider) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetHashCode() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.FolderLevelBuildProvider))] | |
public sealed partial class FolderLevelBuildProviderCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public FolderLevelBuildProviderCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.FolderLevelBuildProvider this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.BuildProvider this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.FolderLevelBuildProvider buildProvider) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class FormsAuthenticationConfiguration : System.Configuration.ConfigurationElement | |
{ | |
public FormsAuthenticationConfiguration() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.HttpCookieMode Cookieless { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.SameSiteMode CookieSameSite { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.FormsAuthenticationCredentials Credentials { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string DefaultUrl { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Domain { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationElementProperty ElementProperty { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool EnableCrossAppRedirects { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string LoginUrl { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Path { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.FormsProtectionEnum Protection { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool RequireSSL { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool SlidingExpiration { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.TicketCompatibilityMode TicketCompatibilityMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.TimeSpanMinutesConverter))] | |
[System.Configuration.TimeSpanValidatorAttribute(MinValueString="00:01:00", MaxValueString="10675199.02:48:05.4775807")] | |
public System.TimeSpan Timeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class FormsAuthenticationCredentials : System.Configuration.ConfigurationElement | |
{ | |
public FormsAuthenticationCredentials() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.FormsAuthPasswordFormat PasswordFormat { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.FormsAuthenticationUserCollection Users { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class FormsAuthenticationUser : System.Configuration.ConfigurationElement | |
{ | |
public FormsAuthenticationUser(string name, string password) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Web.Configuration.LowerCaseStringConverter))] | |
[System.Configuration.StringValidatorAttribute] | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute] | |
public string Password { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.FormsAuthenticationUser), AddItemName="user", CollectionType=System.Configuration.ConfigurationElementCollectionType.BasicMap)] | |
public sealed partial class FormsAuthenticationUserCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public FormsAuthenticationUserCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string[] AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Configuration.ConfigurationElementCollectionType CollectionType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override string ElementName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.FormsAuthenticationUser this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.FormsAuthenticationUser this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override bool ThrowOnDuplicate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.FormsAuthenticationUser user) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.FormsAuthenticationUser Get(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.FormsAuthenticationUser Get(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetKey(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Set(System.Web.Configuration.FormsAuthenticationUser user) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum FormsAuthPasswordFormat | |
{ | |
Clear = 0, | |
SHA1 = 1, | |
MD5 = 2, | |
SHA256 = 3, | |
SHA384 = 4, | |
SHA512 = 5, | |
} | |
public enum FormsProtectionEnum | |
{ | |
All = 0, | |
None = 1, | |
Encryption = 2, | |
Validation = 3, | |
} | |
public sealed partial class FullTrustAssembliesSection : System.Configuration.ConfigurationSection | |
{ | |
public FullTrustAssembliesSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.FullTrustAssemblyCollection FullTrustAssemblies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class FullTrustAssembly : System.Configuration.ConfigurationElement | |
{ | |
public FullTrustAssembly(string assemblyName, string version, string publicKey) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string AssemblyName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string PublicKey { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Version { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(string))] | |
public sealed partial class FullTrustAssemblyCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public FullTrustAssemblyCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.FullTrustAssembly this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.FullTrustAssembly fullTrustAssembly) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class GlobalizationSection : System.Configuration.ConfigurationSection | |
{ | |
public GlobalizationSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string Culture { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool EnableBestFitResponseEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool EnableClientBasedCulture { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Text.Encoding FileEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Text.Encoding RequestEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ResourceProviderFactoryType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Text.Encoding ResponseEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Text.Encoding ResponseHeaderEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string UICulture { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override void PostDeserialize() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void PreSerialize(System.Xml.XmlWriter writer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HealthMonitoringSection : System.Configuration.ConfigurationSection | |
{ | |
public HealthMonitoringSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.BufferModesCollection BufferModes { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Enabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.EventMappingSettingsCollection EventMappings { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.TimeSpanSecondsConverter))] | |
[System.Configuration.TimeSpanValidatorAttribute(MinValueString="00:00:00", MaxValueString="24.20:31:23")] | |
public System.TimeSpan HeartbeatInterval { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.ProfileSettingsCollection Profiles { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Configuration.ProviderSettingsCollection Providers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.RuleSettingsCollection Rules { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class HostingEnvironmentSection : System.Configuration.ConfigurationSection | |
{ | |
public HostingEnvironmentSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.TimeSpanMinutesOrInfiniteConverter))] | |
[System.Configuration.TimeSpanValidatorAttribute(MinValueString="00:00:00", MaxValueString="10675199.02:48:05.4775807")] | |
public System.TimeSpan IdleTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool ShadowCopyBinAssemblies { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.TimeSpanSecondsConverter))] | |
[System.Configuration.TimeSpanValidatorAttribute(MinValueString="00:00:00", MaxValueString="10675199.02:48:05.4775807")] | |
public System.TimeSpan ShutdownTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteTimeSpanConverter))] | |
[System.Configuration.TimeSpanValidatorAttribute(MinValueString="00:00:00", MaxValueString="10675199.02:48:05.4775807")] | |
public System.TimeSpan UrlMetadataSlidingExpiration { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class HttpCapabilitiesBase : System.Web.UI.IFilterResolutionService | |
{ | |
public HttpCapabilitiesBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool ActiveXControls { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.IDictionary Adapters { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool AOL { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool BackgroundSounds { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Beta { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Browser { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.Configuration.HttpCapabilitiesProvider BrowserCapabilitiesProvider { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.ArrayList Browsers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanCombineFormsInDeck { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanInitiateVoiceCall { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanRenderAfterInputOrSelectElement { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanRenderEmptySelects { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanRenderInputAndSelectElementsTogether { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanRenderMixedSelects { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanRenderOneventAndPrevElementsTogether { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanRenderPostBackCards { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanRenderSetvarZeroWithMultiSelectionList { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool CanSendMail { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.IDictionary Capabilities { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool CDF { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Version ClrVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Cookies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Crawler { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int DefaultSubmitButtonLimit { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Version EcmaScriptVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Frames { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int GatewayMajorVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual double GatewayMinorVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string GatewayVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool HasBackButton { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool HidesRightAlignedMultiselectScrollbars { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string HtmlTextWriter { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Id { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string InputType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsColor { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsMobileDevice { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool JavaApplets { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool JavaScript { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Version JScriptVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int MajorVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int MaximumHrefLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int MaximumRenderedPageSize { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int MaximumSoftkeyLabelLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public double MinorVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string MinorVersionString { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string MobileDeviceManufacturer { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string MobileDeviceModel { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Version MSDomVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int NumberOfSoftkeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Platform { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string PreferredImageMime { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string PreferredRenderingMime { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string PreferredRenderingType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string PreferredRequestEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string PreferredResponseEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RendersBreakBeforeWmlSelectAndInput { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RendersBreaksAfterHtmlLists { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RendersBreaksAfterWmlAnchor { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RendersBreaksAfterWmlInput { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RendersWmlDoAcceptsInline { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RendersWmlSelectsAsMenuCards { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string RequiredMetaTagNameValue { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresAttributeColonSubstitution { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresContentTypeMetaTag { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool RequiresControlStateInSession { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresDBCSCharacter { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresHtmlAdaptiveErrorReporting { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresLeadingPageBreak { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresNoBreakInFormatting { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresOutputOptimization { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresPhoneNumbersAsPlainText { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresSpecialViewStateEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresUniqueFilePathSuffix { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresUniqueHtmlCheckboxNames { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresUniqueHtmlInputNames { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequiresUrlEncodedPostfieldValues { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int ScreenBitDepth { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int ScreenCharactersHeight { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int ScreenCharactersWidth { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int ScreenPixelsHeight { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int ScreenPixelsWidth { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsAccesskeyAttribute { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsBodyColor { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsBold { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsCacheControlMetaTag { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsCallback { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsCss { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsDivAlign { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsDivNoWrap { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsEmptyStringInCookieValue { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsFontColor { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsFontName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsFontSize { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsImageSubmit { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsIModeSymbols { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsInputIStyle { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsInputMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsItalic { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsJPhoneMultiMediaAttributes { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsJPhoneSymbols { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsQueryStringInFormAction { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsRedirectWithCookie { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsSelectMultiple { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsUncheck { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool SupportsXmlHttp { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Tables { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Type TagWriter { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Type { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool UseOptimizedCacheKey { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool VBScript { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Version { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Version W3CDomVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Win16 { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Win32 { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void AddBrowser(string browserName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.UI.HtmlTextWriter CreateHtmlTextWriter(System.IO.TextWriter w) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void DisableOptimizedCacheKey() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Version[] GetClrVersions() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.ConfigurationPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Unrestricted=true)] | |
public static System.Web.Configuration.HttpCapabilitiesBase GetConfigCapabilities(string configKey, System.Web.HttpRequest request) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Init() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsBrowser(string browserName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
int System.Web.UI.IFilterResolutionService.CompareFilters(string filter1, string filter2) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
bool System.Web.UI.IFilterResolutionService.EvaluateFilter(string filterName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class HttpCapabilitiesDefaultProvider : System.Web.Configuration.HttpCapabilitiesProvider | |
{ | |
public HttpCapabilitiesDefaultProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpCapabilitiesDefaultProvider(System.Web.Configuration.HttpCapabilitiesDefaultProvider parent) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.TimeSpan CacheTime { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Type ResultType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int UserAgentCacheKeyLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void AddDependency(string variable) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void AddRuleList(System.Collections.ArrayList ruleList) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.HttpBrowserCapabilities GetBrowserCapabilities(System.Web.HttpRequest request) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class HttpCapabilitiesProvider | |
{ | |
protected HttpCapabilitiesProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract System.Web.HttpBrowserCapabilities GetBrowserCapabilities(System.Web.HttpRequest request); | |
} | |
public partial class HttpCapabilitiesSectionHandler : System.Configuration.IConfigurationSectionHandler | |
{ | |
public HttpCapabilitiesSectionHandler() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object Create(object parent, object configurationContext, System.Xml.XmlNode section) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class HttpConfigurationContext | |
{ | |
internal HttpConfigurationContext() { } | |
public string VirtualPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class HttpCookiesSection : System.Configuration.ConfigurationSection | |
{ | |
public HttpCookiesSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string Domain { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool HttpOnlyCookies { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool RequireSSL { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.SameSiteMode SameSite { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class HttpHandlerAction : System.Configuration.ConfigurationElement | |
{ | |
public HttpHandlerAction(string path, string type, string verb) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public HttpHandlerAction(string path, string type, string verb, bool validate) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string Path { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Type { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Validate { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Verb { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.HttpHandlerAction), CollectionType=System.Configuration.ConfigurationElementCollectionType.AddRemoveClearMapAlternate)] | |
public sealed partial class HttpHandlerActionCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public HttpHandlerActionCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Configuration.ConfigurationElementCollectionType CollectionType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.HttpHandlerAction this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override bool ThrowOnDuplicate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.HttpHandlerAction httpHandlerAction) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int IndexOf(System.Web.Configuration.HttpHandlerAction action) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string verb, string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(System.Web.Configuration.HttpHandlerAction action) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpHandlersSection : System.Configuration.ConfigurationSection | |
{ | |
public HttpHandlersSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.HttpHandlerActionCollection Handlers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class HttpModuleAction : System.Configuration.ConfigurationElement | |
{ | |
public HttpModuleAction(string name, string type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElementProperty ElementProperty { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Type { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.HttpModuleAction))] | |
public sealed partial class HttpModuleActionCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public HttpModuleActionCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.HttpModuleAction this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.HttpModuleAction httpModule) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int IndexOf(System.Web.Configuration.HttpModuleAction action) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override bool IsElementRemovable(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(System.Web.Configuration.HttpModuleAction action) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HttpModulesSection : System.Configuration.ConfigurationSection | |
{ | |
public HttpModulesSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.HttpModuleActionCollection Modules { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class HttpRuntimeSection : System.Configuration.ConfigurationSection | |
{ | |
public HttpRuntimeSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool AllowDynamicModuleRegistration { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool ApartmentThreading { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=1)] | |
public int AppRequestQueueLimit { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.AsyncPreloadModeFlags AsyncPreloadMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.TimeSpan DefaultRegexMatchTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.TimeSpanSecondsConverter))] | |
public System.TimeSpan DelayNotificationTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Enable { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool EnableHeaderChecking { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool EnableKernelOutputCache { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool EnableVersionHeader { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string EncoderType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.TimeSpanSecondsConverter))] | |
[System.Configuration.TimeSpanValidatorAttribute(MinValueString="00:00:00", MaxValueString="10675199.02:48:05.4775807")] | |
public System.TimeSpan ExecutionTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.FcnMode FcnMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=0)] | |
public int MaxQueryStringLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=0)] | |
public int MaxRequestLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=0)] | |
public int MaxUrlLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=0)] | |
public int MaxWaitChangeNotification { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=0)] | |
public int MinFreeThreads { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=0)] | |
public int MinLocalRequestFreeThreads { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool RelaxedUrlToFileSystemMapping { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=1)] | |
public int RequestLengthDiskThreshold { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string RequestPathInvalidCharacters { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Version RequestValidationMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string RequestValidationType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool RequireRootedSaveAsPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool SendCacheControlHeader { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.TimeSpanSecondsConverter))] | |
public System.TimeSpan ShutdownTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string TargetFramework { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool UseFullyQualifiedRedirectUrl { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=0)] | |
public int WaitChangeNotification { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override void SetReadOnly() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial interface IConfigMapPath | |
{ | |
string GetAppPathForPath(string siteID, string path); | |
void GetDefaultSiteNameAndID(out string siteName, out string siteID); | |
string GetMachineConfigFilename(); | |
void GetPathConfigFilename(string siteID, string path, out string directory, out string baseName); | |
string GetRootWebConfigFilename(); | |
string MapPath(string siteID, string path); | |
void ResolveSiteArgument(string siteArgument, out string siteName, out string siteID); | |
} | |
public partial interface IConfigMapPathFactory | |
{ | |
System.Web.Configuration.IConfigMapPath Create(string virtualPath, string physicalPath); | |
} | |
public sealed partial class IdentitySection : System.Configuration.ConfigurationSection | |
{ | |
public IdentitySection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool Impersonate { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Password { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string UserName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override object GetRuntimeObject() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void Reset(System.Configuration.ConfigurationElement parentElement) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void Unmerge(System.Configuration.ConfigurationElement sourceElement, System.Configuration.ConfigurationElement parentElement, System.Configuration.ConfigurationSaveMode saveMode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class IgnoreDeviceFilterElement : System.Configuration.ConfigurationElement | |
{ | |
public IgnoreDeviceFilterElement(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElementProperty ElementProperty { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.IgnoreDeviceFilterElement), AddItemName="filter", CollectionType=System.Configuration.ConfigurationElementCollectionType.BasicMap)] | |
public sealed partial class IgnoreDeviceFilterElementCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public IgnoreDeviceFilterElementCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Configuration.ConfigurationElementCollectionType CollectionType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override string ElementName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.IgnoreDeviceFilterElement this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.IgnoreDeviceFilterElement this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.IgnoreDeviceFilterElement deviceFilter) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(System.Web.Configuration.IgnoreDeviceFilterElement deviceFilter) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial interface IRemoteWebConfigurationHostServer | |
{ | |
string DoEncryptOrDecrypt(bool doEncrypt, string xmlString, string protectionProviderName, string protectionProviderType, string[] parameterKeys, string[] parameterValues); | |
byte[] GetData(string fileName, bool getReadTimeOnly, out long readTime); | |
void GetFileDetails(string name, out bool exists, out long size, out long createDate, out long lastWriteDate); | |
string GetFilePaths(int webLevel, string path, string site, string locationSubPath); | |
void WriteData(string fileName, string templateFileName, byte[] data, ref long readTime); | |
} | |
public sealed partial class LowerCaseStringConverter : System.ComponentModel.TypeConverter | |
{ | |
public LowerCaseStringConverter() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext ctx, System.Type type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext ctx, System.Type type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext ctx, System.Globalization.CultureInfo ci, object data) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext ctx, System.Globalization.CultureInfo ci, object value, System.Type type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum MachineKeyCompatibilityMode | |
{ | |
Framework20SP1 = 0, | |
Framework20SP2 = 1, | |
Framework45 = 2, | |
} | |
public sealed partial class MachineKeySection : System.Configuration.ConfigurationSection | |
{ | |
public MachineKeySection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.WhiteSpaceTrimStringConverter))] | |
public string ApplicationName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.MachineKeyCompatibilityMode CompatibilityMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.WhiteSpaceTrimStringConverter))] | |
public string DataProtectorType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.WhiteSpaceTrimStringConverter))] | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Decryption { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.WhiteSpaceTrimStringConverter))] | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string DecryptionKey { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.MachineKeyValidation Validation { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.WhiteSpaceTrimStringConverter))] | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string ValidationAlgorithm { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.WhiteSpaceTrimStringConverter))] | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string ValidationKey { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override void Reset(System.Configuration.ConfigurationElement parentElement) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void SetReadOnly() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum MachineKeyValidation | |
{ | |
MD5 = 0, | |
SHA1 = 1, | |
TripleDES = 2, | |
AES = 3, | |
HMACSHA256 = 4, | |
HMACSHA384 = 5, | |
HMACSHA512 = 6, | |
Custom = 7, | |
} | |
public sealed partial class MachineKeyValidationConverter : System.Configuration.ConfigurationConverterBase | |
{ | |
public MachineKeyValidationConverter() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext ctx, System.Globalization.CultureInfo ci, object data) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext ctx, System.Globalization.CultureInfo ci, object value, System.Type type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class MembershipSection : System.Configuration.ConfigurationSection | |
{ | |
public MembershipSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string DefaultProvider { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string HashAlgorithmType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Configuration.ProviderSettingsCollection Providers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.TimeSpanMinutesConverter))] | |
[System.Configuration.TimeSpanValidatorAttribute(MinValueString="00:01:00", MaxValueString="10675199.02:48:05.4775807")] | |
public System.TimeSpan UserIsOnlineTimeWindow { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.NamespaceInfo))] | |
public sealed partial class NamespaceCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public NamespaceCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool AutoImportVBNamespace { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.NamespaceInfo this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.NamespaceInfo namespaceInformation) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class NamespaceInfo : System.Configuration.ConfigurationElement | |
{ | |
public NamespaceInfo(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Namespace { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Equals(object namespaceInformation) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetHashCode() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class OutputCacheProfile : System.Configuration.ConfigurationElement | |
{ | |
public OutputCacheProfile(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int Duration { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Enabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.UI.OutputCacheLocation Location { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.WhiteSpaceTrimStringConverter))] | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool NoStore { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string SqlDependency { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string VaryByContentEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string VaryByControl { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string VaryByCustom { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string VaryByHeader { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string VaryByParam { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.OutputCacheProfile))] | |
public sealed partial class OutputCacheProfileCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public OutputCacheProfileCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string[] AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.OutputCacheProfile this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.OutputCacheProfile this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.OutputCacheProfile name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.OutputCacheProfile Get(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.OutputCacheProfile Get(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetKey(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Set(System.Web.Configuration.OutputCacheProfile user) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class OutputCacheSection : System.Configuration.ConfigurationSection | |
{ | |
public OutputCacheSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string DefaultProviderName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool EnableFragmentCache { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool EnableKernelCacheForVaryByStar { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool EnableOutputCache { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool OmitVaryStar { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Configuration.ProviderSettingsCollection Providers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool SendCacheControlHeader { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class OutputCacheSettingsSection : System.Configuration.ConfigurationSection | |
{ | |
public OutputCacheSettingsSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.OutputCacheProfileCollection OutputCacheProfiles { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public enum PagesEnableSessionState | |
{ | |
False = 0, | |
ReadOnly = 1, | |
True = 2, | |
} | |
public sealed partial class PagesSection : System.Configuration.ConfigurationSection | |
{ | |
public PagesSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.TimeSpanSecondsConverter))] | |
[System.Configuration.TimeSpanValidatorAttribute(MinValueString="00:00:00", MaxValueString="10675199.02:48:05.4775807")] | |
public System.TimeSpan AsyncTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool AutoEventWireup { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Buffer { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.UI.ClientIDMode ClientIDMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.UI.CompilationMode CompilationMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Version ControlRenderingCompatibilityVersion { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.TagPrefixCollection Controls { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool EnableEventValidation { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.PagesEnableSessionState EnableSessionState { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool EnableViewState { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool EnableViewStateMac { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.IgnoreDeviceFilterElementCollection IgnoreDeviceFilters { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool MaintainScrollPositionOnPostBack { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string MasterPageFile { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int MaxPageStateFieldLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.NamespaceCollection Namespaces { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string PageBaseType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string PageParserFilterType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool RenderAllHiddenFieldsAtTopOfForm { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool SmartNavigation { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string StyleSheetTheme { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.TagMapCollection TagMapping { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Theme { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string UserControlBaseType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool ValidateRequest { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.UI.ViewStateEncryptionMode ViewStateEncryptionMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override void DeserializeSection(System.Xml.XmlReader reader) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void SetReadOnly() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class PartialTrustVisibleAssembliesSection : System.Configuration.ConfigurationSection | |
{ | |
public PartialTrustVisibleAssembliesSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.PartialTrustVisibleAssemblyCollection PartialTrustVisibleAssemblies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class PartialTrustVisibleAssembly : System.Configuration.ConfigurationElement | |
{ | |
public PartialTrustVisibleAssembly(string assemblyName, string publicKey) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string AssemblyName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string PublicKey { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(string))] | |
public sealed partial class PartialTrustVisibleAssemblyCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public PartialTrustVisibleAssemblyCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.PartialTrustVisibleAssembly this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.PartialTrustVisibleAssembly partialTrustVisibleAssembly) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class PassportAuthentication : System.Configuration.ConfigurationElement | |
{ | |
public PassportAuthentication() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElementProperty ElementProperty { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute] | |
public string RedirectUrl { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public enum ProcessModelComAuthenticationLevel | |
{ | |
None = 0, | |
Call = 1, | |
Connect = 2, | |
Default = 3, | |
Pkt = 4, | |
PktIntegrity = 5, | |
PktPrivacy = 6, | |
} | |
public enum ProcessModelComImpersonationLevel | |
{ | |
Default = 0, | |
Anonymous = 1, | |
Delegate = 2, | |
Identify = 3, | |
Impersonate = 4, | |
} | |
public enum ProcessModelLogLevel | |
{ | |
None = 0, | |
All = 1, | |
Errors = 2, | |
} | |
public sealed partial class ProcessModelSection : System.Configuration.ConfigurationSection | |
{ | |
public ProcessModelSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool AutoConfig { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteTimeSpanConverter))] | |
public System.TimeSpan ClientConnectedCheck { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.ProcessModelComAuthenticationLevel ComAuthenticationLevel { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.ProcessModelComImpersonationLevel ComImpersonationLevel { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int CpuMask { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationElementProperty ElementProperty { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Enable { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteTimeSpanConverter))] | |
public System.TimeSpan IdleTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.ProcessModelLogLevel LogLevel { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=1, MaxValue=2147483646)] | |
public int MaxAppDomains { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=1, MaxValue=2147483646)] | |
public int MaxIOThreads { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=1, MaxValue=2147483646)] | |
public int MaxWorkerThreads { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int MemoryLimit { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=1, MaxValue=2147483646)] | |
public int MinIOThreads { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=1, MaxValue=2147483646)] | |
public int MinWorkerThreads { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Password { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteTimeSpanConverter))] | |
public System.TimeSpan PingFrequency { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteTimeSpanConverter))] | |
public System.TimeSpan PingTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteIntConverter))] | |
[System.Configuration.IntegerValidatorAttribute(MinValue=0)] | |
public int RequestLimit { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteIntConverter))] | |
[System.Configuration.IntegerValidatorAttribute(MinValue=0)] | |
public int RequestQueueLimit { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteTimeSpanConverter))] | |
[System.Configuration.TimeSpanValidatorAttribute(MinValueString="00:00:00", MaxValueString="10675199.02:48:05.4775807")] | |
public System.TimeSpan ResponseDeadlockInterval { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteTimeSpanConverter))] | |
public System.TimeSpan ResponseRestartDeadlockInterval { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteIntConverter))] | |
[System.Configuration.IntegerValidatorAttribute(MinValue=0)] | |
public int RestartQueueLimit { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ServerErrorMessageFile { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteTimeSpanConverter))] | |
[System.Configuration.TimeSpanValidatorAttribute(MinValueString="00:00:00", MaxValueString="10675199.02:48:05.4775807")] | |
public System.TimeSpan ShutdownTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteTimeSpanConverter))] | |
public System.TimeSpan Timeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string UserName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool WebGarden { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class ProfileGroupSettings : System.Configuration.ConfigurationElement | |
{ | |
public ProfileGroupSettings(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.ProfilePropertySettingsCollection PropertySettings { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Equals(object obj) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetHashCode() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.ProfileGroupSettings), AddItemName="group")] | |
public sealed partial class ProfileGroupSettingsCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public ProfileGroupSettingsCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string[] AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.ProfileGroupSettings this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.ProfileGroupSettings this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.ProfileGroupSettings group) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.ProfileGroupSettings Get(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.ProfileGroupSettings Get(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetKey(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int IndexOf(System.Web.Configuration.ProfileGroupSettings group) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override bool IsModified() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void ResetModified() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Set(System.Web.Configuration.ProfileGroupSettings group) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.FlagsAttribute] | |
public enum ProfileGuidedOptimizationsFlags | |
{ | |
None = 0, | |
All = 1, | |
} | |
public sealed partial class ProfilePropertySettings : System.Configuration.ConfigurationElement | |
{ | |
public ProfilePropertySettings(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ProfilePropertySettings(string name, bool readOnly, System.Web.Configuration.SerializationMode serializeAs, string providerName, string defaultValue, string profileType, bool allowAnonymous, string customProviderData) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool AllowAnonymous { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string CustomProviderData { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string DefaultValue { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Provider { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool ReadOnly { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.SerializationMode SerializeAs { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Type { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.ProfilePropertySettings))] | |
public partial class ProfilePropertySettingsCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public ProfilePropertySettingsCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string[] AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected virtual bool AllowClear { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.ProfilePropertySettings this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.ProfilePropertySettings this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override bool ThrowOnDuplicate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.ProfilePropertySettings propertySettings) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.ProfilePropertySettings Get(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.ProfilePropertySettings Get(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetKey(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int IndexOf(System.Web.Configuration.ProfilePropertySettings propertySettings) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override bool OnDeserializeUnrecognizedElement(string elementName, System.Xml.XmlReader reader) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Set(System.Web.Configuration.ProfilePropertySettings propertySettings) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ProfileSection : System.Configuration.ConfigurationSection | |
{ | |
public ProfileSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool AutomaticSaveEnabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string DefaultProvider { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Enabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Inherits { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.RootProfilePropertySettingsCollection PropertySettings { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Configuration.ProviderSettingsCollection Providers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class ProfileSettings : System.Configuration.ConfigurationElement | |
{ | |
public ProfileSettings(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ProfileSettings(string name, int minInstances, int maxLimit, System.TimeSpan minInterval) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ProfileSettings(string name, int minInstances, int maxLimit, System.TimeSpan minInterval, string custom) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string Custom { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteIntConverter))] | |
[System.Configuration.IntegerValidatorAttribute(MinValue=0)] | |
public int MaxLimit { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=1)] | |
public int MinInstances { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteTimeSpanConverter))] | |
public System.TimeSpan MinInterval { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.ProfileSettings))] | |
public sealed partial class ProfileSettingsCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public ProfileSettingsCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.ProfileSettings this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.ProfileSettings this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.ProfileSettings profilesSettings) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool Contains(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int IndexOf(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Insert(int index, System.Web.Configuration.ProfileSettings authorizationSettings) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.ProtocolElement))] | |
public sealed partial class ProtocolCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public ProtocolCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string[] AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.ProtocolElement this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.ProtocolElement this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.ProtocolElement protocolElement) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(System.Web.Configuration.ProtocolElement protocolElement) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ProtocolElement : System.Configuration.ConfigurationElement | |
{ | |
public ProtocolElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ProtocolElement(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string AppDomainHandlerType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ProcessHandlerType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Validate { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override void PostDeserialize() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ProtocolsConfigurationHandler : System.Configuration.IConfigurationSectionHandler | |
{ | |
public ProtocolsConfigurationHandler() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object Create(object parent, object configContextObj, System.Xml.XmlNode section) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ProtocolsSection : System.Configuration.ConfigurationSection | |
{ | |
public ProtocolsSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.ProtocolCollection Protocols { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public static partial class ProvidersHelper | |
{ | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.Low)] | |
public static System.Configuration.Provider.ProviderBase InstantiateProvider(System.Configuration.ProviderSettings providerSettings, System.Type providerType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.Low)] | |
public static void InstantiateProviders(System.Configuration.ProviderSettingsCollection configProviders, System.Configuration.Provider.ProviderCollection providers, System.Type providerType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class RegexWorker | |
{ | |
public RegexWorker(System.Web.HttpBrowserCapabilities browserCaps) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool ProcessRegex(string target, string regexExpression) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Runtime.InteropServices.ProgIdAttribute("System.Web.Configuration.RemoteWebConfigurationHostServerV4_32")] | |
public partial class RemoteWebConfigurationHostServer : System.Web.Configuration.IRemoteWebConfigurationHostServer | |
{ | |
public RemoteWebConfigurationHostServer() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string DoEncryptOrDecrypt(bool doEncrypt, string xmlString, string protectionProviderName, string protectionProviderType, string[] paramKeys, string[] paramValues) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public byte[] GetData(string fileName, bool getReadTimeOnly, out long readTime) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void GetFileDetails(string name, out bool exists, out long size, out long createDate, out long lastWriteDate) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetFilePaths(int webLevelAsInt, string path, string site, string locationSubPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void WriteData(string fileName, string templateFileName, byte[] data, ref long readTime) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class RoleManagerSection : System.Configuration.ConfigurationSection | |
{ | |
public RoleManagerSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool CacheRolesInCookie { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.WhiteSpaceTrimStringConverter))] | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string CookieName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.WhiteSpaceTrimStringConverter))] | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string CookiePath { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Security.CookieProtection CookieProtection { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool CookieRequireSSL { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool CookieSlidingExpiration { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.TimeSpanMinutesOrInfiniteConverter))] | |
[System.Configuration.TimeSpanValidatorAttribute(MinValueString="00:00:00", MaxValueString="10675199.02:48:05.4775807")] | |
public System.TimeSpan CookieTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool CreatePersistentCookie { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.WhiteSpaceTrimStringConverter))] | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string DefaultProvider { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Domain { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Enabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int MaxCachedResults { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Configuration.ProviderSettingsCollection Providers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.ProfilePropertySettings))] | |
public sealed partial class RootProfilePropertySettingsCollection : System.Web.Configuration.ProfilePropertySettingsCollection | |
{ | |
public RootProfilePropertySettingsCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override bool AllowClear { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.ProfileGroupSettingsCollection GroupSettings { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override bool ThrowOnDuplicate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Equals(object rootProfilePropertySettingsCollection) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetHashCode() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override bool IsModified() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override bool OnDeserializeUnrecognizedElement(string elementName, System.Xml.XmlReader reader) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void Reset(System.Configuration.ConfigurationElement parentElement) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void ResetModified() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override bool SerializeElement(System.Xml.XmlWriter writer, bool serializeCollectionKey) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void Unmerge(System.Configuration.ConfigurationElement sourceElement, System.Configuration.ConfigurationElement parentElement, System.Configuration.ConfigurationSaveMode saveMode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class RuleSettings : System.Configuration.ConfigurationElement | |
{ | |
public RuleSettings(string name, string eventName, string provider) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public RuleSettings(string name, string eventName, string provider, string profile, int minInstances, int maxLimit, System.TimeSpan minInterval) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public RuleSettings(string name, string eventName, string provider, string profile, int minInstances, int maxLimit, System.TimeSpan minInterval, string custom) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string Custom { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string EventName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteIntConverter))] | |
[System.Configuration.IntegerValidatorAttribute(MinValue=0)] | |
public int MaxLimit { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=1)] | |
public int MinInstances { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.InfiniteTimeSpanConverter))] | |
public System.TimeSpan MinInterval { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Profile { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Provider { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.RuleSettings))] | |
public sealed partial class RuleSettingsCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public RuleSettingsCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.RuleSettings this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.RuleSettings this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.RuleSettings ruleSettings) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool Contains(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int IndexOf(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Insert(int index, System.Web.Configuration.RuleSettings eventSettings) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class SecurityPolicySection : System.Configuration.ConfigurationSection | |
{ | |
public SecurityPolicySection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.TrustLevelCollection TrustLevels { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public enum SerializationMode | |
{ | |
String = 0, | |
Xml = 1, | |
Binary = 2, | |
ProviderSpecific = 3, | |
} | |
public sealed partial class SessionPageStateSection : System.Configuration.ConfigurationSection | |
{ | |
public const int DefaultHistorySize = 9; | |
public SessionPageStateSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=1)] | |
public int HistorySize { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class SessionStateSection : System.Configuration.ConfigurationSection | |
{ | |
public SessionStateSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool AllowCustomSqlDatabase { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool CompressionEnabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpCookieMode Cookieless { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string CookieName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.SameSiteMode CookieSameSite { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string CustomProvider { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationElementProperty ElementProperty { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.SessionState.SessionStateMode Mode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string PartitionResolverType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Configuration.ProviderSettingsCollection Providers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool RegenerateExpiredSessionId { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string SessionIDManagerType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.TimeSpanSecondsOrInfiniteConverter))] | |
public System.TimeSpan SqlCommandTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.TimeSpanSecondsOrInfiniteConverter))] | |
public System.TimeSpan SqlConnectionRetryInterval { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string SqlConnectionString { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string StateConnectionString { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.TimeSpanSecondsOrInfiniteConverter))] | |
public System.TimeSpan StateNetworkTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.ComponentModel.TypeConverterAttribute(typeof(System.Configuration.TimeSpanMinutesOrInfiniteConverter))] | |
[System.Configuration.TimeSpanValidatorAttribute(MinValueString="00:01:00", MaxValueString="10675199.02:48:05.4775807")] | |
public System.TimeSpan Timeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool UseHostingIdentity { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override void PostDeserialize() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class SiteMapSection : System.Configuration.ConfigurationSection | |
{ | |
public SiteMapSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string DefaultProvider { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Enabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Configuration.ProviderSettingsCollection Providers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class SqlCacheDependencyDatabase : System.Configuration.ConfigurationElement | |
{ | |
public SqlCacheDependencyDatabase(string name, string connectionStringName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public SqlCacheDependencyDatabase(string name, string connectionStringName, int pollTime) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string ConnectionStringName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationElementProperty ElementProperty { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int PollTime { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.SqlCacheDependencyDatabase))] | |
public sealed partial class SqlCacheDependencyDatabaseCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public SqlCacheDependencyDatabaseCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string[] AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.SqlCacheDependencyDatabase this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.SqlCacheDependencyDatabase this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.SqlCacheDependencyDatabase name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.SqlCacheDependencyDatabase Get(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.SqlCacheDependencyDatabase Get(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetKey(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Set(System.Web.Configuration.SqlCacheDependencyDatabase user) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class SqlCacheDependencySection : System.Configuration.ConfigurationSection | |
{ | |
public SqlCacheDependencySection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.SqlCacheDependencyDatabaseCollection Databases { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationElementProperty ElementProperty { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Enabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int PollTime { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override void PostDeserialize() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class SystemWebCachingSectionGroup : System.Configuration.ConfigurationSectionGroup | |
{ | |
public SystemWebCachingSectionGroup() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.CacheSection Cache { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.OutputCacheSection OutputCache { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.OutputCacheSettingsSection OutputCacheSettings { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.SqlCacheDependencySection SqlCacheDependency { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class SystemWebSectionGroup : System.Configuration.ConfigurationSectionGroup | |
{ | |
public SystemWebSectionGroup() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.AnonymousIdentificationSection AnonymousIdentification { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.AuthenticationSection Authentication { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.AuthorizationSection Authorization { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Configuration.DefaultSection BrowserCaps { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.ClientTargetSection ClientTarget { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.CompilationSection Compilation { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.CustomErrorsSection CustomErrors { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.DeploymentSection Deployment { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Configuration.DefaultSection DeviceFilters { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.FullTrustAssembliesSection FullTrustAssemblies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.GlobalizationSection Globalization { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.HealthMonitoringSection HealthMonitoring { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.HostingEnvironmentSection HostingEnvironment { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.HttpCookiesSection HttpCookies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.HttpHandlersSection HttpHandlers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.HttpModulesSection HttpModules { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.HttpRuntimeSection HttpRuntime { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.IdentitySection Identity { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.MachineKeySection MachineKey { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.MembershipSection Membership { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Configuration.ConfigurationSection MobileControls { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.PagesSection Pages { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.PartialTrustVisibleAssembliesSection PartialTrustVisibleAssemblies { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.ProcessModelSection ProcessModel { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.ProfileSection Profile { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Configuration.DefaultSection Protocols { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.RoleManagerSection RoleManager { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.SecurityPolicySection SecurityPolicy { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.SessionStateSection SessionState { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.SiteMapSection SiteMap { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.TraceSection Trace { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.TrustSection Trust { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.UrlMappingsSection UrlMappings { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.WebControlsSection WebControls { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.WebPartsSection WebParts { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.XhtmlConformanceSection XhtmlConformance { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.TagMapInfo))] | |
public sealed partial class TagMapCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public TagMapCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.TagMapInfo this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.TagMapInfo tagMapInformation) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(System.Web.Configuration.TagMapInfo tagMapInformation) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class TagMapInfo : System.Configuration.ConfigurationElement | |
{ | |
public TagMapInfo(string tagTypeName, string mappedTagTypeName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string MappedTagType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string TagType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Equals(object o) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetHashCode() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override bool SerializeElement(System.Xml.XmlWriter writer, bool serializeCollectionKey) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.TagPrefixInfo), AddItemName="add", CollectionType=System.Configuration.ConfigurationElementCollectionType.BasicMap)] | |
public sealed partial class TagPrefixCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public TagPrefixCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Configuration.ConfigurationElementCollectionType CollectionType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override string ElementName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.TagPrefixInfo this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override bool ThrowOnDuplicate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.TagPrefixInfo tagPrefixInformation) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(System.Web.Configuration.TagPrefixInfo tagPrefixInformation) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class TagPrefixInfo : System.Configuration.ConfigurationElement | |
{ | |
public TagPrefixInfo(string tagPrefix, string nameSpace, string assembly, string tagName, string source) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string Assembly { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationElementProperty ElementProperty { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Namespace { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Source { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string TagName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string TagPrefix { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Equals(object prefix) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetHashCode() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum TicketCompatibilityMode | |
{ | |
Framework20 = 0, | |
Framework40 = 1, | |
} | |
public enum TraceDisplayMode | |
{ | |
SortByTime = 1, | |
SortByCategory = 2, | |
} | |
public sealed partial class TraceSection : System.Configuration.ConfigurationSection | |
{ | |
public TraceSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool Enabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool LocalOnly { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool MostRecent { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool PageOutput { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.IntegerValidatorAttribute(MinValue=0)] | |
public int RequestLimit { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.TraceDisplayMode TraceMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool WriteToDiagnosticsTrace { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class TransformerInfo : System.Configuration.ConfigurationElement | |
{ | |
public TransformerInfo(string name, string type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Type { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool Equals(object o) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetHashCode() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.TransformerInfo))] | |
public sealed partial class TransformerInfoCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public TransformerInfoCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.TransformerInfo this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.TransformerInfo transformerInfo) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class TrustLevel : System.Configuration.ConfigurationElement | |
{ | |
public TrustLevel(string name, string policyFile) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string PolicyFile { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.TrustLevel), AddItemName="trustLevel", CollectionType=System.Configuration.ConfigurationElementCollectionType.BasicMap)] | |
public sealed partial class TrustLevelCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public TrustLevelCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Configuration.ConfigurationElementCollectionType CollectionType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override string ElementName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.TrustLevel this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.TrustLevel this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override bool ThrowOnDuplicate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.TrustLevel trustLevel) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.TrustLevel Get(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override bool IsElementName(string elementname) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(System.Web.Configuration.TrustLevel trustLevel) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Set(int index, System.Web.Configuration.TrustLevel trustLevel) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class TrustSection : System.Configuration.ConfigurationSection | |
{ | |
public TrustSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string HostSecurityPolicyResolverType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool LegacyCasModel { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string Level { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string OriginUrl { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string PermissionSetName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool ProcessRequestInApplicationTrust { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class UrlMapping : System.Configuration.ConfigurationElement | |
{ | |
public UrlMapping(string url, string mappedUrl) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string MappedUrl { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Url { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.UrlMapping))] | |
public sealed partial class UrlMappingCollection : System.Configuration.ConfigurationElementCollection | |
{ | |
public UrlMappingCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string[] AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.UrlMapping this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public new System.Web.Configuration.UrlMapping this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Configuration.UrlMapping urlMapping) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationElement CreateNewElement() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetKey(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(System.Web.Configuration.UrlMapping urlMapping) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class UrlMappingsSection : System.Configuration.ConfigurationSection | |
{ | |
public UrlMappingsSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsEnabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.UrlMappingCollection UrlMappings { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class UserMapPath : System.Web.Configuration.IConfigMapPath | |
{ | |
public UserMapPath(System.Configuration.ConfigurationFileMap fileMap) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetAppPathForPath(string siteID, string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void GetDefaultSiteNameAndID(out string siteName, out string siteID) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetMachineConfigFilename() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void GetPathConfigFilename(string siteID, string path, out string directory, out string baseName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetRootWebConfigFilename() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string MapPath(string siteID, string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void ResolveSiteArgument(string siteArgument, out string siteName, out string siteID) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class VirtualDirectoryMapping | |
{ | |
public VirtualDirectoryMapping(string physicalDirectory, bool isAppRoot) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public VirtualDirectoryMapping(string physicalDirectory, bool isAppRoot, string configFileBaseName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string ConfigFileBaseName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsAppRoot { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string PhysicalDirectory { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string VirtualDirectory { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class VirtualDirectoryMappingCollection : System.Collections.Specialized.NameObjectCollectionBase | |
{ | |
public VirtualDirectoryMappingCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.ICollection AllKeys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.VirtualDirectoryMapping this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.VirtualDirectoryMapping this[string virtualDirectory] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(string virtualDirectory, System.Web.Configuration.VirtualDirectoryMapping mapping) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void CopyTo(System.Web.Configuration.VirtualDirectoryMapping[] array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.VirtualDirectoryMapping Get(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.VirtualDirectoryMapping Get(string virtualDirectory) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetKey(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string virtualDirectory) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum WebApplicationLevel | |
{ | |
AboveApplication = 10, | |
AtApplication = 20, | |
BelowApplication = 30, | |
} | |
public sealed partial class WebConfigurationFileMap : System.Configuration.ConfigurationFileMap | |
{ | |
public WebConfigurationFileMap() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public WebConfigurationFileMap(string machineConfigFileName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.VirtualDirectoryMappingCollection VirtualDirectories { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object Clone() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public static partial class WebConfigurationManager | |
{ | |
public static System.Collections.Specialized.NameValueCollection AppSettings { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Configuration.ConnectionStringSettingsCollection ConnectionStrings { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static object GetSection(string sectionName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static object GetSection(string sectionName, string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static object GetWebApplicationSection(string sectionName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Configuration.Configuration OpenMachineConfiguration() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Configuration.Configuration OpenMachineConfiguration(string locationSubPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Configuration.Configuration OpenMachineConfiguration(string locationSubPath, string server) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Configuration.Configuration OpenMachineConfiguration(string locationSubPath, string server, System.IntPtr userToken) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Configuration.Configuration OpenMachineConfiguration(string locationSubPath, string server, string userName, string password) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Configuration.Configuration OpenMappedMachineConfiguration(System.Configuration.ConfigurationFileMap fileMap) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Configuration.Configuration OpenMappedMachineConfiguration(System.Configuration.ConfigurationFileMap fileMap, string locationSubPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Configuration.Configuration OpenMappedWebConfiguration(System.Web.Configuration.WebConfigurationFileMap fileMap, string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Configuration.Configuration OpenMappedWebConfiguration(System.Web.Configuration.WebConfigurationFileMap fileMap, string path, string site) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Configuration.Configuration OpenMappedWebConfiguration(System.Web.Configuration.WebConfigurationFileMap fileMap, string path, string site, string locationSubPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Configuration.Configuration OpenWebConfiguration(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Configuration.Configuration OpenWebConfiguration(string path, string site) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Configuration.Configuration OpenWebConfiguration(string path, string site, string locationSubPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Configuration.Configuration OpenWebConfiguration(string path, string site, string locationSubPath, string server) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Configuration.Configuration OpenWebConfiguration(string path, string site, string locationSubPath, string server, System.IntPtr userToken) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Configuration.Configuration OpenWebConfiguration(string path, string site, string locationSubPath, string server, string userName, string password) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class WebContext | |
{ | |
public WebContext(System.Web.Configuration.WebApplicationLevel pathLevel, string site, string applicationPath, string path, string locationSubPath, string appConfigPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.WebApplicationLevel ApplicationLevel { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ApplicationPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string LocationSubPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Path { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Site { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string ToString() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class WebControlsSection : System.Configuration.ConfigurationSection | |
{ | |
public WebControlsSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string ClientScriptsLocation { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override object GetRuntimeObject() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class WebPartsPersonalization : System.Configuration.ConfigurationElement | |
{ | |
public WebPartsPersonalization() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.WebPartsPersonalizationAuthorization Authorization { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Configuration.StringValidatorAttribute(MinLength=1)] | |
public string DefaultProvider { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Configuration.ProviderSettingsCollection Providers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class WebPartsPersonalizationAuthorization : System.Configuration.ConfigurationElement | |
{ | |
public WebPartsPersonalizationAuthorization() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.AuthorizationRuleCollection Rules { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class WebPartsSection : System.Configuration.ConfigurationSection | |
{ | |
public WebPartsSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool EnableExport { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.WebPartsPersonalization Personalization { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Configuration.TransformerInfoCollection Transformers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override object GetRuntimeObject() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum XhtmlConformanceMode | |
{ | |
Transitional = 0, | |
Legacy = 1, | |
Strict = 2, | |
} | |
public sealed partial class XhtmlConformanceSection : System.Configuration.ConfigurationSection | |
{ | |
public XhtmlConformanceSection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Configuration.XhtmlConformanceMode Mode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
} | |
namespace System.Web.Configuration.Internal | |
{ | |
public partial interface IInternalConfigWebHost | |
{ | |
string GetConfigPathFromSiteIDAndVPath(string siteID, string vpath); | |
void GetSiteIDAndVPathFromConfigPath(string configPath, out string siteID, out string vpath); | |
} | |
} | |
namespace System.Web.Globalization | |
{ | |
public partial interface IStringLocalizerProvider | |
{ | |
string GetLocalizedString(System.Globalization.CultureInfo culture, string name, params object[] arguments); | |
} | |
public sealed partial class ResourceFileStringLocalizerProvider : System.Web.Globalization.IStringLocalizerProvider | |
{ | |
public const string ResourceFileName = "DataAnnotation.Localization"; | |
public ResourceFileStringLocalizerProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetLocalizedString(System.Globalization.CultureInfo culture, string name, params object[] arguments) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public static partial class StringLocalizerProviders | |
{ | |
public static System.Web.Globalization.IStringLocalizerProvider DataAnnotationStringLocalizerProvider { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
} | |
namespace System.Web.Handlers | |
{ | |
public sealed partial class AssemblyResourceLoader : System.Web.IHttpHandler | |
{ | |
public AssemblyResourceLoader() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
bool System.Web.IHttpHandler.IsReusable { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
void System.Web.IHttpHandler.ProcessRequest(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class TraceHandler : System.Web.IHttpHandler | |
{ | |
public TraceHandler() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected bool IsReusable { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
bool System.Web.IHttpHandler.IsReusable { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected void ProcessRequest(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected void ShowDetails(System.Data.DataSet data) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected void ShowRequests(System.Collections.IList data) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected void ShowVersionDetails() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.Web.IHttpHandler.ProcessRequest(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
} | |
namespace System.Web.Hosting | |
{ | |
public sealed partial class AppDomainFactory : System.Web.Hosting.IAppDomainFactory | |
{ | |
public AppDomainFactory() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object Create(string module, string typeName, string appId, string appPath, string strUrlOfAppOrigin, int iZone) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class AppDomainInfo : System.Web.Hosting.IAppDomainInfo | |
{ | |
internal AppDomainInfo() { } | |
public string GetId() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetPhysicalPath() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int GetSiteId() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetVirtualPath() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsIdle() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class AppDomainInfoEnum : System.Web.Hosting.IAppDomainInfoEnum | |
{ | |
internal AppDomainInfoEnum() { } | |
public int Count() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Hosting.IAppDomainInfo GetData() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool MoveNext() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Reset() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class AppDomainProtocolHandler : System.MarshalByRefObject, System.Web.Hosting.IRegisteredObject | |
{ | |
protected AppDomainProtocolHandler() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object InitializeLifetimeService() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract void StartListenerChannel(System.Web.Hosting.IListenerChannelCallback listenerChannelCallback); | |
public virtual void Stop(bool immediate) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract void StopListenerChannel(int listenerChannelId, bool immediate); | |
public abstract void StopProtocol(bool immediate); | |
} | |
public sealed partial class ApplicationHost | |
{ | |
internal ApplicationHost() { } | |
public static object CreateApplicationHost(System.Type hostType, string virtualDir, string physicalDir) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ApplicationInfo | |
{ | |
internal ApplicationInfo() { } | |
public string ID { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string PhysicalPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string VirtualPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class ApplicationManager : System.MarshalByRefObject | |
{ | |
internal ApplicationManager() { } | |
public void Close() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Hosting.IRegisteredObject CreateObject(string appId, System.Type type, string virtualPath, string physicalPath, bool failIfExists) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Hosting.IRegisteredObject CreateObject(string appId, System.Type type, string virtualPath, string physicalPath, bool failIfExists, bool throwOnError) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Hosting.IRegisteredObject CreateObject(System.Web.Hosting.IApplicationHost appHost, System.Type type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.AppDomain GetAppDomain(string appId) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.AppDomain GetAppDomain(System.Web.Hosting.IApplicationHost appHost) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Hosting.ApplicationManager GetApplicationManager() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Hosting.IRegisteredObject GetObject(string appId, System.Type type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Hosting.ApplicationInfo[] GetRunningApplications() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object InitializeLifetimeService() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsIdle() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Open() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void ShutdownAll() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void ShutdownApplication(string appId) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void StopObject(string appId, System.Type type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ApplicationMonitors | |
{ | |
internal ApplicationMonitors() { } | |
public System.Web.Hosting.IApplicationMonitor MemoryMonitor { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class AppManagerAppDomainFactory : System.Web.Hosting.IAppManagerAppDomainFactory | |
{ | |
public AppManagerAppDomainFactory() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object Create(string appId, string appPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Stop() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class AspNetMemoryMonitor : System.IDisposable, System.IObservable<System.Web.Hosting.LowPhysicalMemoryInfo>, System.IObservable<System.Web.Hosting.RecycleLimitInfo>, System.Web.Hosting.IApplicationMonitor | |
{ | |
internal AspNetMemoryMonitor() { } | |
public System.IObserver<System.Web.Hosting.LowPhysicalMemoryInfo> DefaultLowPhysicalMemoryObserver { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.IObserver<System.Web.Hosting.RecycleLimitInfo> DefaultRecycleLimitObserver { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Dispose() { } | |
public void Start() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Stop() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.IDisposable Subscribe(System.IObserver<System.Web.Hosting.LowPhysicalMemoryInfo> observer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.IDisposable Subscribe(System.IObserver<System.Web.Hosting.RecycleLimitInfo> observer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class HostingEnvironment : System.MarshalByRefObject | |
{ | |
public HostingEnvironment() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Hosting.IApplicationHost ApplicationHost { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string ApplicationID { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.Hosting.ApplicationMonitors ApplicationMonitors { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string ApplicationPhysicalPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string ApplicationVirtualPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.Caching.Cache Cache { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool InClientBuildManager { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Exception InitializationException { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool IsDevelopmentEnvironment { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool IsHosted { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static int MaxConcurrentRequestsPerCPU { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static int MaxConcurrentThreadsPerCPU { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.ApplicationShutdownReason ShutdownReason { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string SiteName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.Hosting.VirtualPathProvider VirtualPathProvider { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static event System.EventHandler StopListening { add { } remove { } } | |
public static void DecrementBusyCount() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.IDisposable Impersonate() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.IDisposable Impersonate(System.IntPtr token) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.IDisposable Impersonate(System.IntPtr userToken, string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void IncrementBusyCount() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object InitializeLifetimeService() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void InitiateShutdown() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string MapPath(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void MessageReceived() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void QueueBackgroundWorkItem(System.Action<System.Threading.CancellationToken> workItem) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void QueueBackgroundWorkItem(System.Func<System.Threading.CancellationToken, System.Threading.Tasks.Task> workItem) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RegisterObject(System.Web.Hosting.IRegisteredObject obj) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RegisterVirtualPathProvider(System.Web.Hosting.VirtualPathProvider virtualPathProvider) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.IDisposable SetCultures() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.IDisposable SetCultures(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void UnregisterObject(System.Web.Hosting.IRegisteredObject obj) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class HostSecurityPolicyResolver | |
{ | |
public HostSecurityPolicyResolver() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.Hosting.HostSecurityPolicyResults ResolvePolicy(System.Security.Policy.Evidence evidence) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum HostSecurityPolicyResults | |
{ | |
DefaultPolicy = 0, | |
FullTrust = 1, | |
AppDomainTrust = 2, | |
Nothing = 3, | |
} | |
public partial interface IAdphManager | |
{ | |
void StartAppDomainProtocolListenerChannel(string appId, string protocolId, System.Web.Hosting.IListenerChannelCallback listenerChannelCallback); | |
void StopAppDomainProtocol(string appId, string protocolId, bool immediate); | |
void StopAppDomainProtocolListenerChannel(string appId, string protocolId, int listenerChannelId, bool immediate); | |
} | |
[System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] | |
public partial interface IAppDomainFactory | |
{ | |
object Create(string module, string typeName, string appId, string appPath, string strUrlOfAppOrigin, int iZone); | |
} | |
[System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] | |
public partial interface IAppDomainInfo | |
{ | |
string GetId(); | |
string GetPhysicalPath(); | |
int GetSiteId(); | |
string GetVirtualPath(); | |
bool IsIdle(); | |
} | |
[System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] | |
public partial interface IAppDomainInfoEnum | |
{ | |
int Count(); | |
System.Web.Hosting.IAppDomainInfo GetData(); | |
bool MoveNext(); | |
void Reset(); | |
} | |
public partial interface IApplicationHost | |
{ | |
System.Web.Configuration.IConfigMapPathFactory GetConfigMapPathFactory(); | |
System.IntPtr GetConfigToken(); | |
string GetPhysicalPath(); | |
string GetSiteID(); | |
string GetSiteName(); | |
string GetVirtualPath(); | |
void MessageReceived(); | |
} | |
public partial interface IApplicationMonitor : System.IDisposable | |
{ | |
void Start(); | |
void Stop(); | |
} | |
[System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] | |
public partial interface IApplicationPreloadManager | |
{ | |
void SetApplicationPreloadState(string context, string appId, bool enabled); | |
void SetApplicationPreloadUtil(System.Web.Hosting.IApplicationPreloadUtil preloadUtil); | |
} | |
[System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] | |
public partial interface IApplicationPreloadUtil | |
{ | |
void GetApplicationPreloadInfo(string context, out bool enabled, out string startupObjType, out string[] parametersForStartupObj); | |
void ReportApplicationPreloadFailure(string context, int errorCode, string errorMessage); | |
} | |
[System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] | |
public partial interface IAppManagerAppDomainFactory | |
{ | |
object Create(string appId, string appPath); | |
void Stop(); | |
} | |
[System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] | |
public partial interface IISAPIRuntime | |
{ | |
void DoGCCollect(); | |
int ProcessRequest(System.IntPtr ecb, int useProcessModel); | |
void StartProcessing(); | |
void StopProcessing(); | |
} | |
[System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] | |
public partial interface IListenerChannelCallback | |
{ | |
void GetBlob(byte[] buffer, ref int bufferSize); | |
int GetBlobLength(); | |
int GetId(); | |
void ReportMessageReceived(); | |
void ReportStarted(); | |
void ReportStopped(int hr); | |
} | |
[System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] | |
public partial interface IPphManager | |
{ | |
void StartProcessProtocolListenerChannel(string protocolId, System.Web.Hosting.IListenerChannelCallback listenerChannelCallback); | |
void StopProcessProtocol(string protocolId, bool immediate); | |
void StopProcessProtocolListenerChannel(string protocolId, int listenerChannelId, bool immediate); | |
} | |
[System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] | |
public partial interface IProcessHost | |
{ | |
void EnumerateAppDomains(out System.Web.Hosting.IAppDomainInfoEnum appDomainInfoEnum); | |
void Shutdown(); | |
void ShutdownApplication(string appId); | |
void StartApplication(string appId, string appPath, out object runtimeInterface); | |
} | |
[System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] | |
public partial interface IProcessHostFactoryHelper | |
{ | |
object GetProcessHost(System.Web.Hosting.IProcessHostSupportFunctions functions); | |
} | |
[System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] | |
public partial interface IProcessHostIdleAndHealthCheck | |
{ | |
bool IsIdle(); | |
void Ping(System.Web.Hosting.IProcessPingCallback callback); | |
} | |
public partial interface IProcessHostPreloadClient | |
{ | |
void Preload(string[] parameters); | |
} | |
[System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] | |
public partial interface IProcessHostSupportFunctions | |
{ | |
string GetAppHostConfigFilename(); | |
void GetApplicationProperties(string appId, out string virtualPath, out string physicalPath, out string siteName, out string siteId); | |
System.IntPtr GetConfigToken(string appId); | |
System.IntPtr GetNativeConfigurationSystem(); | |
string GetRootWebConfigFilename(); | |
void MapPath(string appId, string virtualPath, out string physicalPath); | |
} | |
[System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] | |
public partial interface IProcessPingCallback | |
{ | |
void Respond(); | |
} | |
public partial interface IRegisteredObject | |
{ | |
void Stop(bool immediate); | |
} | |
public sealed partial class ISAPIRuntime : System.MarshalByRefObject, System.Web.Hosting.IISAPIRuntime, System.Web.Hosting.IRegisteredObject | |
{ | |
public ISAPIRuntime() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void DoGCCollect() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object InitializeLifetimeService() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int ProcessRequest(System.IntPtr ecb, int iWRType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void StartProcessing() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void StopProcessing() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.Web.Hosting.IRegisteredObject.Stop(bool immediate) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial interface IStopListeningRegisteredObject : System.Web.Hosting.IRegisteredObject | |
{ | |
void StopListening(); | |
} | |
public partial interface ISuspendibleRegisteredObject : System.Web.Hosting.IRegisteredObject | |
{ | |
System.Action Suspend(); | |
} | |
public sealed partial class LowPhysicalMemoryInfo | |
{ | |
public LowPhysicalMemoryInfo(int currentPercentUsed, int percentLimit) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int CurrentPercentUsed { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int PercentLimit { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool RequestGC { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class LowPhysicalMemoryObserver : System.IObserver<System.Web.Hosting.LowPhysicalMemoryInfo> | |
{ | |
public LowPhysicalMemoryObserver() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void OnCompleted() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void OnError(System.Exception error) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void OnNext(System.Web.Hosting.LowPhysicalMemoryInfo lowMemoryInfo) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ProcessHost : System.MarshalByRefObject, System.Web.Hosting.IAdphManager, System.Web.Hosting.IApplicationPreloadManager, System.Web.Hosting.IPphManager, System.Web.Hosting.IProcessHost, System.Web.Hosting.IProcessHostIdleAndHealthCheck | |
{ | |
internal ProcessHost() { } | |
public void EnumerateAppDomains(out System.Web.Hosting.IAppDomainInfoEnum appDomainInfoEnum) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object InitializeLifetimeService() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsIdle() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Ping(System.Web.Hosting.IProcessPingCallback callback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetApplicationPreloadState(string context, string appId, bool enabled) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetApplicationPreloadUtil(System.Web.Hosting.IApplicationPreloadUtil applicationPreloadUtil) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Shutdown() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void ShutdownApplication(string appId) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void StartAppDomainProtocolListenerChannel(string appId, string protocolId, System.Web.Hosting.IListenerChannelCallback listenerChannelCallback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void StartApplication(string appId, string appPath, out object runtimeInterface) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void StartProcessProtocolListenerChannel(string protocolId, System.Web.Hosting.IListenerChannelCallback listenerChannelCallback) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void StopAppDomainProtocol(string appId, string protocolId, bool immediate) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void StopAppDomainProtocolListenerChannel(string appId, string protocolId, int listenerChannelId, bool immediate) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void StopProcessProtocol(string protocolId, bool immediate) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void StopProcessProtocolListenerChannel(string protocolId, int listenerChannelId, bool immediate) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ProcessHostFactoryHelper : System.MarshalByRefObject, System.Web.Hosting.IProcessHostFactoryHelper | |
{ | |
public ProcessHostFactoryHelper() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object GetProcessHost(System.Web.Hosting.IProcessHostSupportFunctions functions) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object InitializeLifetimeService() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class ProcessProtocolHandler : System.MarshalByRefObject | |
{ | |
protected ProcessProtocolHandler() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object InitializeLifetimeService() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract void StartListenerChannel(System.Web.Hosting.IListenerChannelCallback listenerChannelCallback, System.Web.Hosting.IAdphManager AdphManager); | |
public abstract void StopListenerChannel(int listenerChannelId, bool immediate); | |
public abstract void StopProtocol(bool immediate); | |
} | |
public sealed partial class RecycleLimitInfo | |
{ | |
public RecycleLimitInfo(long currentPrivateBytes, long recycleLimit, System.Web.Hosting.RecycleLimitNotificationFrequency recycleLimitNearFrequency) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public long CurrentPrivateBytes { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public long RecycleLimit { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool RequestGC { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Hosting.RecycleLimitNotificationFrequency TrimFrequency { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class RecycleLimitMonitor : System.MarshalByRefObject | |
{ | |
internal RecycleLimitMonitor() { } | |
public void Dispose() { } | |
public override object InitializeLifetimeService() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public partial class RecycleLimitMonitorSingleton : System.MarshalByRefObject | |
{ | |
internal RecycleLimitMonitorSingleton() { } | |
public void Dispose() { } | |
public static void EnsureCreated() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object InitializeLifetimeService() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterProxyAndStart(System.Web.Hosting.RecycleLimitMonitor proxy, string applicationID) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void UnregisterProxyAndStop(System.Web.Hosting.RecycleLimitMonitor proxy) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
} | |
public enum RecycleLimitNotificationFrequency | |
{ | |
High = 0, | |
Medium = 1, | |
Low = 2, | |
} | |
public partial class RecycleLimitObserver : System.IObserver<System.Web.Hosting.RecycleLimitInfo> | |
{ | |
public RecycleLimitObserver() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void OnCompleted() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void OnError(System.Exception error) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void OnNext(System.Web.Hosting.RecycleLimitInfo recycleLimitInfo) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class SimpleWorkerRequest : System.Web.HttpWorkerRequest | |
{ | |
public SimpleWorkerRequest(string page, string query, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public SimpleWorkerRequest(string appVirtualDir, string appPhysicalDir, string page, string query, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string MachineConfigPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string MachineInstallDirectory { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string RootWebConfigPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void EndOfRequest() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void FlushResponse(bool finalFlush) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetAppPath() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetAppPathTranslated() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetFilePath() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetFilePathTranslated() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetHttpVerbName() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetHttpVersion() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetLocalAddress() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetLocalPort() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetPathInfo() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetQueryString() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetRawUrl() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetRemoteAddress() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetRemotePort() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetServerVariable(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetUriPath() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.IntPtr GetUserToken() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string MapPath(string path) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SendKnownResponseHeader(int index, string value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SendResponseFromFile(System.IntPtr handle, long offset, long length) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SendResponseFromFile(string filename, long offset, long length) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SendResponseFromMemory(byte[] data, int length) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SendStatus(int statusCode, string statusDescription) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SendUnknownResponseHeader(string name, string value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class VirtualDirectory : System.Web.Hosting.VirtualFileBase | |
{ | |
protected VirtualDirectory(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract System.Collections.IEnumerable Children { get; } | |
public abstract System.Collections.IEnumerable Directories { get; } | |
public abstract System.Collections.IEnumerable Files { get; } | |
public override bool IsDirectory { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public abstract partial class VirtualFile : System.Web.Hosting.VirtualFileBase | |
{ | |
protected VirtualFile(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool IsDirectory { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public abstract System.IO.Stream Open(); | |
} | |
public abstract partial class VirtualFileBase : System.MarshalByRefObject | |
{ | |
protected VirtualFileBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract bool IsDirectory { get; } | |
public virtual string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string VirtualPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object InitializeLifetimeService() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class VirtualPathProvider : System.MarshalByRefObject | |
{ | |
protected VirtualPathProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal System.Web.Hosting.VirtualPathProvider Previous { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string CombineVirtualPaths(string basePath, string relativePath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool DirectoryExists(string virtualDir) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool FileExists(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.Caching.CacheDependency GetCacheDependency(string virtualPath, System.Collections.IEnumerable virtualPathDependencies, System.DateTime utcStart) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GetCacheKey(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.Hosting.VirtualDirectory GetDirectory(string virtualDir) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.Hosting.VirtualFile GetFile(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GetFileHash(string virtualPath, System.Collections.IEnumerable virtualPathDependencies) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void Initialize() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override object InitializeLifetimeService() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.IO.Stream OpenFile(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
} | |
namespace System.Web.Instrumentation | |
{ | |
public partial class PageExecutionContext | |
{ | |
public PageExecutionContext() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsLiteral { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int Length { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int StartPosition { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.IO.TextWriter TextWriter { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string VirtualPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public abstract partial class PageExecutionListener | |
{ | |
protected PageExecutionListener() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract void BeginContext(System.Web.Instrumentation.PageExecutionContext context); | |
public abstract void EndContext(System.Web.Instrumentation.PageExecutionContext context); | |
} | |
public sealed partial class PageInstrumentationService | |
{ | |
public PageInstrumentationService() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.Generic.IList<System.Web.Instrumentation.PageExecutionListener> ExecutionListeners { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool IsEnabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
} | |
namespace System.Web.Mail | |
{ | |
public partial class MailAttachment | |
{ | |
public MailAttachment(string filename) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public MailAttachment(string filename, System.Web.Mail.MailEncoding encoding) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Mail.MailEncoding Encoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Filename { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public enum MailEncoding | |
{ | |
UUEncode = 0, | |
Base64 = 1, | |
} | |
public enum MailFormat | |
{ | |
Text = 0, | |
Html = 1, | |
} | |
public partial class MailMessage | |
{ | |
public MailMessage() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.IList Attachments { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Bcc { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Body { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Text.Encoding BodyEncoding { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Mail.MailFormat BodyFormat { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Cc { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.IDictionary Fields { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string From { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.IDictionary Headers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Mail.MailPriority Priority { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Subject { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string To { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string UrlContentBase { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string UrlContentLocation { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public enum MailPriority | |
{ | |
Normal = 0, | |
Low = 1, | |
High = 2, | |
} | |
public partial class SmtpMail | |
{ | |
internal SmtpMail() { } | |
public static string SmtpServer { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, UnmanagedCode=true)] | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.Medium)] | |
public static void Send(string from, string to, string subject, string messageText) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, UnmanagedCode=true)] | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.Medium)] | |
public static void Send(System.Web.Mail.MailMessage message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
} | |
namespace System.Web.Management | |
{ | |
public abstract partial class BufferedWebEventProvider : System.Web.Management.WebEventProvider | |
{ | |
protected BufferedWebEventProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string BufferMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool UseBuffering { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void Flush() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void ProcessEvent(System.Web.Management.WebBaseEvent eventRaised) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract void ProcessEventFlush(System.Web.Management.WebEventBufferFlushInfo flushInfo); | |
public override void Shutdown() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class EventLogWebEventProvider : System.Web.Management.WebEventProvider | |
{ | |
internal EventLogWebEventProvider() { } | |
public override void Flush() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void ProcessEvent(System.Web.Management.WebBaseEvent eventRaised) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Shutdown() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum EventNotificationType | |
{ | |
Regular = 0, | |
Urgent = 1, | |
Flush = 2, | |
Unbuffered = 3, | |
} | |
public sealed partial class IisTraceWebEventProvider : System.Web.Management.WebEventProvider | |
{ | |
public IisTraceWebEventProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Flush() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void ProcessEvent(System.Web.Management.WebBaseEvent eventRaised) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Shutdown() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] | |
public partial interface IRegiisUtility | |
{ | |
void ProtectedConfigAction(long actionToPerform, string firstArgument, string secondArgument, string providerName, string appPath, string site, string cspOrLocation, int keySize, out System.IntPtr exception); | |
void RegisterAsnetMmcAssembly(int doReg, string assemblyName, string binaryDirectory, out System.IntPtr exception); | |
void RegisterSystemWebAssembly(int doReg, out System.IntPtr exception); | |
void RemoveBrowserCaps(out System.IntPtr exception); | |
} | |
public partial interface IWebEventCustomEvaluator | |
{ | |
bool CanFire(System.Web.Management.WebBaseEvent raisedEvent, System.Web.Management.RuleFiringRecord record); | |
} | |
public sealed partial class MailEventNotificationInfo | |
{ | |
internal MailEventNotificationInfo() { } | |
public System.Web.Management.WebBaseEventCollection Events { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int EventsDiscardedByBuffer { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int EventsDiscardedDueToMessageLimit { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int EventsInBuffer { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int EventsInNotification { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int EventsRemaining { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.DateTime LastNotificationUtc { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Net.Mail.MailMessage Message { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int MessageSequence { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int MessagesInNotification { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int NotificationSequence { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Management.EventNotificationType NotificationType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public abstract partial class MailWebEventProvider : System.Web.Management.BufferedWebEventProvider | |
{ | |
internal MailWebEventProvider() { } | |
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void ProcessEvent(System.Web.Management.WebBaseEvent eventRaised) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void ProcessEventFlush(System.Web.Management.WebEventBufferFlushInfo flushInfo) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Shutdown() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class RegiisUtility : System.Web.Management.IRegiisUtility | |
{ | |
public RegiisUtility() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void ProtectedConfigAction(long options, string firstArgument, string secondArgument, string providerName, string appPath, string site, string cspOrLocation, int keySize, out System.IntPtr exception) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterAsnetMmcAssembly(int doReg, string typeName, string binaryDirectory, out System.IntPtr exception) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterSystemWebAssembly(int doReg, out System.IntPtr exception) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveBrowserCaps(out System.IntPtr exception) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class RuleFiringRecord | |
{ | |
internal RuleFiringRecord() { } | |
public System.DateTime LastFired { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int TimesRaised { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public enum SessionStateType | |
{ | |
Temporary = 0, | |
Persisted = 1, | |
Custom = 2, | |
} | |
public sealed partial class SimpleMailWebEventProvider : System.Web.Management.MailWebEventProvider | |
{ | |
internal SimpleMailWebEventProvider() { } | |
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class SqlExecutionException : System.SystemException | |
{ | |
public SqlExecutionException() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public SqlExecutionException(string message) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public SqlExecutionException(string message, System.Exception innerException) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public SqlExecutionException(string message, string server, string database, string sqlFile, string commands, System.Data.SqlClient.SqlException sqlException) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string Commands { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Database { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Data.SqlClient.SqlException Exception { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Server { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string SqlFile { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.FlagsAttribute] | |
public enum SqlFeatures | |
{ | |
None = 0, | |
Membership = 1, | |
Profile = 2, | |
RoleManager = 4, | |
Personalization = 8, | |
SqlWebEventProvider = 16, | |
All = 1073741855, | |
} | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=System.Web.AspNetHostingPermissionLevel.High)] | |
public static partial class SqlServices | |
{ | |
public static string GenerateApplicationServicesScripts(bool install, System.Web.Management.SqlFeatures features, string database) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string GenerateSessionStateScripts(bool install, System.Web.Management.SessionStateType type, string customDatabase) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void Install(string server, string user, string password, string database, System.Web.Management.SqlFeatures features) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void Install(string server, string database, System.Web.Management.SqlFeatures features) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void Install(string database, System.Web.Management.SqlFeatures features, string connectionString) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void InstallSessionState(string server, string user, string password, string customDatabase, System.Web.Management.SessionStateType type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void InstallSessionState(string server, string customDatabase, System.Web.Management.SessionStateType type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void InstallSessionState(string customDatabase, System.Web.Management.SessionStateType type, string connectionString) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void Uninstall(string server, string user, string password, string database, System.Web.Management.SqlFeatures features) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void Uninstall(string server, string database, System.Web.Management.SqlFeatures features) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void Uninstall(string database, System.Web.Management.SqlFeatures features, string connectionString) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void UninstallSessionState(string server, string user, string password, string customDatabase, System.Web.Management.SessionStateType type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void UninstallSessionState(string server, string customDatabase, System.Web.Management.SessionStateType type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void UninstallSessionState(string customDatabase, System.Web.Management.SessionStateType type, string connectionString) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class SqlWebEventProvider : System.Web.Management.BufferedWebEventProvider | |
{ | |
protected internal SqlWebEventProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void EventProcessingComplete(System.Web.Management.WebBaseEventCollection raisedEvents) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void ProcessEvent(System.Web.Management.WebBaseEvent eventRaised) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void ProcessEventFlush(System.Web.Management.WebEventBufferFlushInfo flushInfo) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Shutdown() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class TemplatedMailWebEventProvider : System.Web.Management.MailWebEventProvider | |
{ | |
internal TemplatedMailWebEventProvider() { } | |
public static System.Web.Management.MailEventNotificationInfo CurrentNotification { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class TraceWebEventProvider : System.Web.Management.WebEventProvider | |
{ | |
internal TraceWebEventProvider() { } | |
public override void Flush() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void ProcessEvent(System.Web.Management.WebBaseEvent eventRaised) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Shutdown() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class WebApplicationInformation | |
{ | |
internal WebApplicationInformation() { } | |
public string ApplicationDomain { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ApplicationPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ApplicationVirtualPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string MachineName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string TrustLevel { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void FormatToString(System.Web.Management.WebEventFormatter formatter) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string ToString() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class WebApplicationLifetimeEvent : System.Web.Management.WebManagementEvent | |
{ | |
protected internal WebApplicationLifetimeEvent(string message, object eventSource, int eventCode) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal WebApplicationLifetimeEvent(string message, object eventSource, int eventCode, int eventDetailCode) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal override void IncrementPerfCounters() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class WebAuditEvent : System.Web.Management.WebManagementEvent | |
{ | |
protected internal WebAuditEvent(string message, object eventSource, int eventCode) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal WebAuditEvent(string message, object eventSource, int eventCode, int eventDetailCode) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Management.WebRequestInformation RequestInformation { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class WebAuthenticationFailureAuditEvent : System.Web.Management.WebFailureAuditEvent | |
{ | |
protected internal WebAuthenticationFailureAuditEvent(string message, object eventSource, int eventCode, int eventDetailCode, string nameToAuthenticate) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal WebAuthenticationFailureAuditEvent(string message, object eventSource, int eventCode, string nameToAuthenticate) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string NameToAuthenticate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class WebAuthenticationSuccessAuditEvent : System.Web.Management.WebSuccessAuditEvent | |
{ | |
protected internal WebAuthenticationSuccessAuditEvent(string message, object eventSource, int eventCode, int eventDetailCode, string nameToAuthenticate) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal WebAuthenticationSuccessAuditEvent(string message, object eventSource, int eventCode, string nameToAuthenticate) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string NameToAuthenticate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class WebBaseErrorEvent : System.Web.Management.WebManagementEvent | |
{ | |
protected internal WebBaseErrorEvent(string message, object eventSource, int eventCode, System.Exception e) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal WebBaseErrorEvent(string message, object eventSource, int eventCode, int eventDetailCode, System.Exception e) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Exception ErrorException { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected internal override void IncrementPerfCounters() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class WebBaseEvent | |
{ | |
protected internal WebBaseEvent(string message, object eventSource, int eventCode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal WebBaseEvent(string message, object eventSource, int eventCode, int eventDetailCode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Management.WebApplicationInformation ApplicationInformation { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int EventCode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int EventDetailCode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Guid EventID { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public long EventOccurrence { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public long EventSequence { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object EventSource { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.DateTime EventTime { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.DateTime EventTimeUtc { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Message { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual void FormatCustomEventDetails(System.Web.Management.WebEventFormatter formatter) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal virtual void IncrementPerfCounters() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.Medium)] | |
public virtual void Raise() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=System.Web.AspNetHostingPermissionLevel.Medium)] | |
public static void Raise(System.Web.Management.WebBaseEvent eventRaised) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string ToString() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string ToString(bool includeAppInfo, bool includeCustomEventDetails) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class WebBaseEventCollection : System.Collections.ReadOnlyCollectionBase | |
{ | |
public WebBaseEventCollection(System.Collections.ICollection events) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Management.WebBaseEvent this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Contains(System.Web.Management.WebBaseEvent value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int IndexOf(System.Web.Management.WebBaseEvent value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class WebErrorEvent : System.Web.Management.WebBaseErrorEvent | |
{ | |
protected internal WebErrorEvent(string message, object eventSource, int eventCode, System.Exception exception) : base (default(string), default(object), default(int), default(System.Exception)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal WebErrorEvent(string message, object eventSource, int eventCode, int eventDetailCode, System.Exception exception) : base (default(string), default(object), default(int), default(System.Exception)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Management.WebRequestInformation RequestInformation { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Management.WebThreadInformation ThreadInformation { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected internal override void IncrementPerfCounters() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class WebEventBufferFlushInfo | |
{ | |
internal WebEventBufferFlushInfo() { } | |
public System.Web.Management.WebBaseEventCollection Events { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int EventsDiscardedSinceLastNotification { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int EventsInBuffer { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.DateTime LastNotificationUtc { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int NotificationSequence { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Management.EventNotificationType NotificationType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class WebEventCodes | |
{ | |
internal WebEventCodes() { } | |
public const int ApplicationCodeBase = 1000; | |
public const int ApplicationCompilationEnd = 1004; | |
public const int ApplicationCompilationStart = 1003; | |
public const int ApplicationDetailCodeBase = 50000; | |
public const int ApplicationHeartbeat = 1005; | |
public const int ApplicationShutdown = 1002; | |
public const int ApplicationShutdownBinDirChangeOrDirectoryRename = 50007; | |
public const int ApplicationShutdownBrowsersDirChangeOrDirectoryRename = 50008; | |
public const int ApplicationShutdownBuildManagerChange = 50017; | |
public const int ApplicationShutdownChangeInGlobalAsax = 50003; | |
public const int ApplicationShutdownChangeInSecurityPolicyFile = 50006; | |
public const int ApplicationShutdownCodeDirChangeOrDirectoryRename = 50009; | |
public const int ApplicationShutdownConfigurationChange = 50004; | |
public const int ApplicationShutdownHostingEnvironment = 50002; | |
public const int ApplicationShutdownHttpRuntimeClose = 50013; | |
public const int ApplicationShutdownIdleTimeout = 50011; | |
public const int ApplicationShutdownInitializationError = 50014; | |
public const int ApplicationShutdownMaxRecompilationsReached = 50015; | |
public const int ApplicationShutdownPhysicalApplicationPathChanged = 50012; | |
public const int ApplicationShutdownResourcesDirChangeOrDirectoryRename = 50010; | |
public const int ApplicationShutdownUnknown = 50001; | |
public const int ApplicationShutdownUnloadAppDomainCalled = 50005; | |
public const int ApplicationStart = 1001; | |
public const int AuditCodeBase = 4000; | |
public const int AuditDetailCodeBase = 50200; | |
public const int AuditFileAuthorizationFailure = 4008; | |
public const int AuditFileAuthorizationSuccess = 4004; | |
public const int AuditFormsAuthenticationFailure = 4005; | |
public const int AuditFormsAuthenticationSuccess = 4001; | |
public const int AuditInvalidViewStateFailure = 4009; | |
public const int AuditMembershipAuthenticationFailure = 4006; | |
public const int AuditMembershipAuthenticationSuccess = 4002; | |
public const int AuditUnhandledAccessException = 4011; | |
public const int AuditUnhandledSecurityException = 4010; | |
public const int AuditUrlAuthorizationFailure = 4007; | |
public const int AuditUrlAuthorizationSuccess = 4003; | |
public const int ErrorCodeBase = 3000; | |
public const int ExpiredTicketFailure = 50202; | |
public const int InvalidEventCode = -1; | |
public const int InvalidTicketFailure = 50201; | |
public const int InvalidViewState = 50204; | |
public const int InvalidViewStateMac = 50203; | |
public const int MiscCodeBase = 6000; | |
public const int RequestCodeBase = 2000; | |
public const int RequestTransactionAbort = 2002; | |
public const int RequestTransactionComplete = 2001; | |
public const int RuntimeErrorPostTooLarge = 3004; | |
public const int RuntimeErrorRequestAbort = 3001; | |
public const int RuntimeErrorUnhandledException = 3005; | |
public const int RuntimeErrorValidationFailure = 3003; | |
public const int RuntimeErrorViewStateFailure = 3002; | |
public const int RuntimeErrorWebResourceFailure = 3012; | |
public const int SqlProviderEventsDropped = 50301; | |
public const int StateServerConnectionError = 50016; | |
public const int UndefinedEventCode = 0; | |
public const int UndefinedEventDetailCode = 0; | |
public const int WebErrorCompilationError = 3007; | |
public const int WebErrorConfigurationError = 3008; | |
public const int WebErrorObjectStateFormatterDeserializationError = 3011; | |
public const int WebErrorOtherError = 3009; | |
public const int WebErrorParserError = 3006; | |
public const int WebErrorPropertyDeserializationError = 3010; | |
public const int WebEventDetailCodeBase = 50300; | |
public const int WebEventProviderInformation = 6001; | |
public const int WebExtendedBase = 100000; | |
} | |
public partial class WebEventFormatter | |
{ | |
internal WebEventFormatter() { } | |
public int IndentationLevel { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int TabSize { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void AppendLine(string s) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public new string ToString() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public static partial class WebEventManager | |
{ | |
public static void Flush() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void Flush(string providerName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class WebEventProvider : System.Configuration.Provider.ProviderBase | |
{ | |
protected WebEventProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract void Flush(); | |
public abstract void ProcessEvent(System.Web.Management.WebBaseEvent raisedEvent); | |
public abstract void Shutdown(); | |
} | |
public partial class WebFailureAuditEvent : System.Web.Management.WebAuditEvent | |
{ | |
protected internal WebFailureAuditEvent(string message, object eventSource, int eventCode) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal WebFailureAuditEvent(string message, object eventSource, int eventCode, int eventDetailCode) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal override void IncrementPerfCounters() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class WebHeartbeatEvent : System.Web.Management.WebManagementEvent | |
{ | |
protected internal WebHeartbeatEvent(string message, int eventCode) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Management.WebProcessStatistics ProcessStatistics { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class WebManagementEvent : System.Web.Management.WebBaseEvent | |
{ | |
protected internal WebManagementEvent(string message, object eventSource, int eventCode) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal WebManagementEvent(string message, object eventSource, int eventCode, int eventDetailCode) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Management.WebProcessInformation ProcessInformation { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class WebProcessInformation | |
{ | |
internal WebProcessInformation() { } | |
public string AccountName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int ProcessID { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ProcessName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void FormatToString(System.Web.Management.WebEventFormatter formatter) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class WebProcessStatistics | |
{ | |
public WebProcessStatistics() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int AppDomainCount { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public long ManagedHeapSize { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public long PeakWorkingSet { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.DateTime ProcessStartTime { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int RequestsExecuting { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int RequestsQueued { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int RequestsRejected { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int ThreadCount { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public long WorkingSet { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual void FormatToString(System.Web.Management.WebEventFormatter formatter) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class WebRequestErrorEvent : System.Web.Management.WebBaseErrorEvent | |
{ | |
protected internal WebRequestErrorEvent(string message, object eventSource, int eventCode, System.Exception exception) : base (default(string), default(object), default(int), default(System.Exception)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal WebRequestErrorEvent(string message, object eventSource, int eventCode, int eventDetailCode, System.Exception exception) : base (default(string), default(object), default(int), default(System.Exception)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Management.WebRequestInformation RequestInformation { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Management.WebThreadInformation ThreadInformation { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected internal override void IncrementPerfCounters() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class WebRequestEvent : System.Web.Management.WebManagementEvent | |
{ | |
protected internal WebRequestEvent(string message, object eventSource, int eventCode) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal WebRequestEvent(string message, object eventSource, int eventCode, int eventDetailCode) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Management.WebRequestInformation RequestInformation { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected internal override void IncrementPerfCounters() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class WebRequestInformation | |
{ | |
internal WebRequestInformation() { } | |
public System.Security.Principal.IPrincipal Principal { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string RequestPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string RequestUrl { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ThreadAccountName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string UserHostAddress { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void FormatToString(System.Web.Management.WebEventFormatter formatter) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class WebSuccessAuditEvent : System.Web.Management.WebAuditEvent | |
{ | |
protected internal WebSuccessAuditEvent(string message, object eventSource, int eventCode) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal WebSuccessAuditEvent(string message, object eventSource, int eventCode, int eventDetailCode) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal override void IncrementPerfCounters() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class WebThreadInformation | |
{ | |
internal WebThreadInformation() { } | |
public bool IsImpersonating { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string StackTrace { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ThreadAccountName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int ThreadID { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void FormatToString(System.Web.Management.WebEventFormatter formatter) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class WebViewStateFailureAuditEvent : System.Web.Management.WebFailureAuditEvent | |
{ | |
protected internal WebViewStateFailureAuditEvent(string message, object eventSource, int eventCode, int eventDetailCode, System.Web.UI.ViewStateException viewStateException) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal WebViewStateFailureAuditEvent(string message, object eventSource, int eventCode, System.Web.UI.ViewStateException viewStateException) : base (default(string), default(object), default(int)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.UI.ViewStateException ViewStateException { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class WmiWebEventProvider : System.Web.Management.WebEventProvider | |
{ | |
public WmiWebEventProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Flush() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void ProcessEvent(System.Web.Management.WebBaseEvent eventRaised) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Shutdown() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
} | |
namespace System.Web.ModelBinding | |
{ | |
public sealed partial class ArrayModelBinderProvider : System.Web.ModelBinding.ModelBinderProvider | |
{ | |
public ArrayModelBinderProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.IModelBinder GetBinder(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class ArrayModelBinder<TElement> : System.Web.ModelBinding.CollectionModelBinder<TElement> | |
{ | |
public ArrayModelBinder() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override bool CreateOrReplaceCollection(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext, System.Collections.Generic.IList<TElement> newCollection) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class AssociatedMetadataProvider : System.Web.ModelBinding.ModelMetadataProvider | |
{ | |
protected AssociatedMetadataProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected abstract System.Web.ModelBinding.ModelMetadata CreateMetadata(System.Collections.Generic.IEnumerable<System.Attribute> attributes, System.Type containerType, System.Func<object> modelAccessor, System.Type modelType, string propertyName); | |
protected virtual System.Collections.Generic.IEnumerable<System.Attribute> FilterAttributes(System.Type containerType, System.ComponentModel.PropertyDescriptor propertyDescriptor, System.Collections.Generic.IEnumerable<System.Attribute> attributes) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Collections.Generic.IEnumerable<System.Web.ModelBinding.ModelMetadata> GetMetadataForProperties(object container, System.Type containerType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual System.Web.ModelBinding.ModelMetadata GetMetadataForProperty(System.Func<object> modelAccessor, System.Type containerType, System.ComponentModel.PropertyDescriptor propertyDescriptor) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.ModelMetadata GetMetadataForProperty(System.Func<object> modelAccessor, System.Type containerType, string propertyName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.ModelMetadata GetMetadataForType(System.Func<object> modelAccessor, System.Type modelType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual System.ComponentModel.ICustomTypeDescriptor GetTypeDescriptor(System.Type type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class AssociatedValidatorProvider : System.Web.ModelBinding.ModelValidatorProvider | |
{ | |
protected AssociatedValidatorProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual System.ComponentModel.ICustomTypeDescriptor GetTypeDescriptor(System.Type type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public sealed override System.Collections.Generic.IEnumerable<System.Web.ModelBinding.ModelValidator> GetValidators(System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected abstract System.Collections.Generic.IEnumerable<System.Web.ModelBinding.ModelValidator> GetValidators(System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context, System.Collections.Generic.IEnumerable<System.Attribute> attributes); | |
} | |
public sealed partial class BinaryDataModelBinderProvider : System.Web.ModelBinding.ModelBinderProvider | |
{ | |
public BinaryDataModelBinderProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.IModelBinder GetBinder(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum BindingBehavior | |
{ | |
Optional = 0, | |
Never = 1, | |
Required = 2, | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Property, AllowMultiple=false, Inherited=true)] | |
public partial class BindingBehaviorAttribute : System.Attribute | |
{ | |
public BindingBehaviorAttribute(System.Web.ModelBinding.BindingBehavior behavior) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.ModelBinding.BindingBehavior Behavior { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object TypeId { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Property, AllowMultiple=false, Inherited=true)] | |
public sealed partial class BindNeverAttribute : System.Web.ModelBinding.BindingBehaviorAttribute | |
{ | |
public BindNeverAttribute() : base (default(System.Web.ModelBinding.BindingBehavior)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Property, AllowMultiple=false, Inherited=true)] | |
public sealed partial class BindRequiredAttribute : System.Web.ModelBinding.BindingBehaviorAttribute | |
{ | |
public BindRequiredAttribute() : base (default(System.Web.ModelBinding.BindingBehavior)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class CollectionModelBinderProvider : System.Web.ModelBinding.ModelBinderProvider | |
{ | |
public CollectionModelBinderProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.IModelBinder GetBinder(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class CollectionModelBinder<TElement> : System.Web.ModelBinding.IModelBinder | |
{ | |
public CollectionModelBinder() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool BindModel(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual bool CreateOrReplaceCollection(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext, System.Collections.Generic.IList<TElement> newCollection) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class ComplexModel | |
{ | |
public ComplexModel(System.Web.ModelBinding.ModelMetadata modelMetadata, System.Collections.Generic.IEnumerable<System.Web.ModelBinding.ModelMetadata> propertyMetadata) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.ModelBinding.ModelMetadata ModelMetadata { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.ObjectModel.ReadOnlyCollection<System.Web.ModelBinding.ModelMetadata> PropertyMetadata { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Generic.IDictionary<System.Web.ModelBinding.ModelMetadata, System.Web.ModelBinding.ComplexModelResult> Results { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class ComplexModelBinder : System.Web.ModelBinding.IModelBinder | |
{ | |
public ComplexModelBinder() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool BindModel(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ComplexModelBinderProvider : System.Web.ModelBinding.ModelBinderProvider | |
{ | |
public ComplexModelBinderProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.IModelBinder GetBinder(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ComplexModelResult | |
{ | |
public ComplexModelResult(object model, System.Web.ModelBinding.ModelValidationNode validationNode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object Model { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.ModelBinding.ModelValidationNode ValidationNode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false, AllowMultiple=false)] | |
public sealed partial class ControlAttribute : System.Web.ModelBinding.ValueProviderSourceAttribute | |
{ | |
public ControlAttribute() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ControlAttribute(string controlID) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ControlAttribute(string controlID, string propertyName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string ControlID { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string PropertyName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string GetModelName() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.IValueProvider GetValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ControlValueProvider : System.Web.ModelBinding.SimpleValueProvider | |
{ | |
public ControlValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, string propertyName) : base (default(System.Web.ModelBinding.ModelBindingExecutionContext)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string PropertyName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override object FetchValue(string controlId) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false, AllowMultiple=false)] | |
public sealed partial class CookieAttribute : System.Web.ModelBinding.ValueProviderSourceAttribute, System.Web.ModelBinding.IUnvalidatedValueProviderSource, System.Web.ModelBinding.IValueProviderSource | |
{ | |
public CookieAttribute() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public CookieAttribute(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool ValidateInput { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string GetModelName() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.IValueProvider GetValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class CookieValueProvider : System.Web.ModelBinding.IUnvalidatedValueProvider, System.Web.ModelBinding.IValueProvider | |
{ | |
public CookieValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool ContainsPrefix(string prefix) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.ModelBinding.ValueProviderResult GetValue(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.ModelBinding.ValueProviderResult GetValue(string key, bool skipValidation) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class DataAnnotationsModelMetadata : System.Web.ModelBinding.ModelMetadata | |
{ | |
public DataAnnotationsModelMetadata(System.Web.ModelBinding.DataAnnotationsModelMetadataProvider provider, System.Type containerType, System.Func<object> modelAccessor, System.Type modelType, string propertyName, System.ComponentModel.DataAnnotations.DisplayColumnAttribute displayColumnAttribute) : base (default(System.Web.ModelBinding.ModelMetadataProvider), default(System.Type), default(System.Func<object>), default(System.Type), default(string)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override string GetSimpleDisplayText() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class DataAnnotationsModelMetadataProvider : System.Web.ModelBinding.AssociatedMetadataProvider | |
{ | |
public DataAnnotationsModelMetadataProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Web.ModelBinding.ModelMetadata CreateMetadata(System.Collections.Generic.IEnumerable<System.Attribute> attributes, System.Type containerType, System.Func<object> modelAccessor, System.Type modelType, string propertyName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public delegate System.Web.ModelBinding.ModelValidator DataAnnotationsModelValidationFactory(System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context, System.ComponentModel.DataAnnotations.ValidationAttribute attribute); | |
public partial class DataAnnotationsModelValidator : System.Web.ModelBinding.ModelValidator | |
{ | |
public DataAnnotationsModelValidator(System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context, System.ComponentModel.DataAnnotations.ValidationAttribute attribute) : base (default(System.Web.ModelBinding.ModelMetadata), default(System.Web.ModelBinding.ModelBindingExecutionContext)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal System.ComponentModel.DataAnnotations.ValidationAttribute Attribute { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected internal string ErrorMessage { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsRequired { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected virtual string GetLocalizedErrorMessage(string errorMessage) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected string GetLocalizedString(string name, params object[] arguments) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Collections.Generic.IEnumerable<System.Web.ModelBinding.ModelValidationResult> Validate(object container) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class DataAnnotationsModelValidatorProvider : System.Web.ModelBinding.AssociatedValidatorProvider | |
{ | |
public DataAnnotationsModelValidatorProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool AddImplicitRequiredAttributeForValueTypes { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override System.Collections.Generic.IEnumerable<System.Web.ModelBinding.ModelValidator> GetValidators(System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context, System.Collections.Generic.IEnumerable<System.Attribute> attributes) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RegisterAdapter(System.Type attributeType, System.Type adapterType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RegisterAdapterFactory(System.Type attributeType, System.Web.ModelBinding.DataAnnotationsModelValidationFactory factory) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RegisterDefaultAdapter(System.Type adapterType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RegisterDefaultAdapterFactory(System.Web.ModelBinding.DataAnnotationsModelValidationFactory factory) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RegisterDefaultValidatableObjectAdapter(System.Type adapterType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RegisterDefaultValidatableObjectAdapterFactory(System.Web.ModelBinding.DataAnnotationsValidatableObjectAdapterFactory factory) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RegisterValidatableObjectAdapter(System.Type modelType, System.Type adapterType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RegisterValidatableObjectAdapterFactory(System.Type modelType, System.Web.ModelBinding.DataAnnotationsValidatableObjectAdapterFactory factory) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class DataAnnotationsModelValidator<TAttribute> : System.Web.ModelBinding.DataAnnotationsModelValidator where TAttribute : System.ComponentModel.DataAnnotations.ValidationAttribute | |
{ | |
public DataAnnotationsModelValidator(System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context, TAttribute attribute) : base (default(System.Web.ModelBinding.ModelMetadata), default(System.Web.ModelBinding.ModelBindingExecutionContext), default(System.ComponentModel.DataAnnotations.ValidationAttribute)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected new TAttribute Attribute { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public delegate System.Web.ModelBinding.ModelValidator DataAnnotationsValidatableObjectAdapterFactory(System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context); | |
public partial class DefaultModelBinder : System.Web.ModelBinding.IModelBinder | |
{ | |
public DefaultModelBinder() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.ModelBinding.ModelBinderProviderCollection Providers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool BindModel(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class DictionaryModelBinderProvider : System.Web.ModelBinding.ModelBinderProvider | |
{ | |
public DictionaryModelBinderProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.IModelBinder GetBinder(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class DictionaryModelBinder<TKey, TValue> : System.Web.ModelBinding.CollectionModelBinder<System.Collections.Generic.KeyValuePair<TKey, TValue>> | |
{ | |
public DictionaryModelBinder() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override bool CreateOrReplaceCollection(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext, System.Collections.Generic.IList<System.Collections.Generic.KeyValuePair<TKey, TValue>> newCollection) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class DictionaryValueProvider<TValue> : System.Web.ModelBinding.IValueProvider | |
{ | |
public DictionaryValueProvider(System.Collections.Generic.IDictionary<string, TValue> dictionary, System.Globalization.CultureInfo culture) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool ContainsPrefix(string prefix) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.ModelBinding.ValueProviderResult GetValue(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class EmptyModelMetadataProvider : System.Web.ModelBinding.AssociatedMetadataProvider | |
{ | |
public EmptyModelMetadataProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.Web.ModelBinding.ModelMetadata CreateMetadata(System.Collections.Generic.IEnumerable<System.Attribute> attributes, System.Type containerType, System.Func<object> modelAccessor, System.Type modelType, string propertyName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Interface, AllowMultiple=false, Inherited=true)] | |
public sealed partial class ExtensibleModelBinderAttribute : System.Attribute | |
{ | |
public ExtensibleModelBinderAttribute(System.Type binderType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Type BinderType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool SuppressPrefixCheck { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false, AllowMultiple=false)] | |
public sealed partial class FormAttribute : System.Web.ModelBinding.ValueProviderSourceAttribute, System.Web.ModelBinding.IUnvalidatedValueProviderSource, System.Web.ModelBinding.IValueProviderSource | |
{ | |
public FormAttribute() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public FormAttribute(string fieldName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string FieldName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool ValidateInput { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string GetModelName() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.IValueProvider GetValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class FormValueProvider : System.Web.ModelBinding.NameValueCollectionValueProvider | |
{ | |
public FormValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) : base (default(System.Collections.Specialized.NameValueCollection), default(System.Globalization.CultureInfo)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class GenericModelBinderProvider : System.Web.ModelBinding.ModelBinderProvider | |
{ | |
public GenericModelBinderProvider(System.Type modelType, System.Func<System.Type[], System.Web.ModelBinding.IModelBinder> modelBinderFactory) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public GenericModelBinderProvider(System.Type modelType, System.Type modelBinderType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public GenericModelBinderProvider(System.Type modelType, System.Web.ModelBinding.IModelBinder modelBinder) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Type ModelType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool SuppressPrefixCheck { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.ModelBinding.IModelBinder GetBinder(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial interface IMetadataAware | |
{ | |
void OnMetadataCreated(System.Web.ModelBinding.ModelMetadata metadata); | |
} | |
public partial interface IModelBinder | |
{ | |
bool BindModel(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext); | |
} | |
public partial interface IModelNameProvider | |
{ | |
string GetModelName(); | |
} | |
public partial interface IUnvalidatedValueProvider : System.Web.ModelBinding.IValueProvider | |
{ | |
System.Web.ModelBinding.ValueProviderResult GetValue(string key, bool skipValidation); | |
} | |
public partial interface IUnvalidatedValueProviderSource : System.Web.ModelBinding.IValueProviderSource | |
{ | |
bool ValidateInput { get; set; } | |
} | |
public partial interface IValueProvider | |
{ | |
bool ContainsPrefix(string prefix); | |
System.Web.ModelBinding.ValueProviderResult GetValue(string key); | |
} | |
public partial interface IValueProviderSource | |
{ | |
System.Web.ModelBinding.IValueProvider GetValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext); | |
} | |
public sealed partial class KeyValuePairModelBinderProvider : System.Web.ModelBinding.ModelBinderProvider | |
{ | |
public KeyValuePairModelBinderProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.IModelBinder GetBinder(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class KeyValuePairModelBinder<TKey, TValue> : System.Web.ModelBinding.IModelBinder | |
{ | |
public KeyValuePairModelBinder() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool BindModel(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class MaxLengthAttributeAdapter : System.Web.ModelBinding.DataAnnotationsModelValidator<System.ComponentModel.DataAnnotations.MaxLengthAttribute> | |
{ | |
public MaxLengthAttributeAdapter(System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context, System.ComponentModel.DataAnnotations.MaxLengthAttribute attribute) : base (default(System.Web.ModelBinding.ModelMetadata), default(System.Web.ModelBinding.ModelBindingExecutionContext), default(System.ComponentModel.DataAnnotations.MaxLengthAttribute)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override string GetLocalizedErrorMessage(string errorMessage) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class MinLengthAttributeAdapter : System.Web.ModelBinding.DataAnnotationsModelValidator<System.ComponentModel.DataAnnotations.MinLengthAttribute> | |
{ | |
public MinLengthAttributeAdapter(System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context, System.ComponentModel.DataAnnotations.MinLengthAttribute attribute) : base (default(System.Web.ModelBinding.ModelMetadata), default(System.Web.ModelBinding.ModelBindingExecutionContext), default(System.ComponentModel.DataAnnotations.MinLengthAttribute)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override string GetLocalizedErrorMessage(string errorMessage) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class ModelBinderDictionary : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.Type, System.Web.ModelBinding.IModelBinder>>, System.Collections.Generic.IDictionary<System.Type, System.Web.ModelBinding.IModelBinder>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.Type, System.Web.ModelBinding.IModelBinder>>, System.Collections.IEnumerable | |
{ | |
public ModelBinderDictionary() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.ModelBinding.IModelBinder DefaultBinder { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsReadOnly { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.ModelBinding.IModelBinder this[System.Type key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Generic.ICollection<System.Type> Keys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Generic.ICollection<System.Web.ModelBinding.IModelBinder> Values { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Collections.Generic.KeyValuePair<System.Type, System.Web.ModelBinding.IModelBinder> item) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Add(System.Type key, System.Web.ModelBinding.IModelBinder value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool Contains(System.Collections.Generic.KeyValuePair<System.Type, System.Web.ModelBinding.IModelBinder> item) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool ContainsKey(System.Type key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void CopyTo(System.Collections.Generic.KeyValuePair<System.Type, System.Web.ModelBinding.IModelBinder>[] array, int arrayIndex) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.Type, System.Web.ModelBinding.IModelBinder>> GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool Remove(System.Collections.Generic.KeyValuePair<System.Type, System.Web.ModelBinding.IModelBinder> item) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool Remove(System.Type key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool TryGetValue(System.Type key, out System.Web.ModelBinding.IModelBinder value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public delegate string ModelBinderErrorMessageProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelMetadata modelMetadata, object incomingValue); | |
public static partial class ModelBinderErrorMessageProviders | |
{ | |
public static System.Web.ModelBinding.ModelBinderErrorMessageProvider TypeConversionErrorMessageProvider { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.ModelBinding.ModelBinderErrorMessageProvider ValueRequiredErrorMessageProvider { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public abstract partial class ModelBinderProvider | |
{ | |
protected ModelBinderProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract System.Web.ModelBinding.IModelBinder GetBinder(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext); | |
} | |
public sealed partial class ModelBinderProviderCollection : System.Collections.ObjectModel.Collection<System.Web.ModelBinding.ModelBinderProvider> | |
{ | |
public ModelBinderProviderCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ModelBinderProviderCollection(System.Collections.Generic.IList<System.Web.ModelBinding.ModelBinderProvider> list) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.ModelBinding.IModelBinder GetBinder(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void InsertItem(int index, System.Web.ModelBinding.ModelBinderProvider item) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterBinderForGenericType(System.Type modelType, System.Func<System.Type[], System.Web.ModelBinding.IModelBinder> modelBinderFactory) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterBinderForGenericType(System.Type modelType, System.Type modelBinderType) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterBinderForGenericType(System.Type modelType, System.Web.ModelBinding.IModelBinder modelBinder) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterBinderForType(System.Type modelType, System.Func<System.Web.ModelBinding.IModelBinder> modelBinderFactory) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterBinderForType(System.Type modelType, System.Web.ModelBinding.IModelBinder modelBinder) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void SetItem(int index, System.Web.ModelBinding.ModelBinderProvider item) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=false, Inherited=true)] | |
public sealed partial class ModelBinderProviderOptionsAttribute : System.Attribute | |
{ | |
public ModelBinderProviderOptionsAttribute() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool FrontOfList { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public static partial class ModelBinderProviders | |
{ | |
public static System.Web.ModelBinding.ModelBinderProviderCollection Providers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public static partial class ModelBinders | |
{ | |
public static System.Web.ModelBinding.ModelBinderDictionary Binders { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class ModelBindingContext | |
{ | |
public ModelBindingContext() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ModelBindingContext(System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object Model { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.ModelBinding.ModelBinderProviderCollection ModelBinderProviders { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.ModelBinding.ModelMetadata ModelMetadata { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ModelName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.ModelBinding.ModelStateDictionary ModelState { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Type ModelType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Generic.IDictionary<string, System.Web.ModelBinding.ModelMetadata> PropertyMetadata { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool ValidateRequest { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.ModelBinding.ModelValidationNode ValidationNode { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.ModelBinding.IValueProvider ValueProvider { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class ModelBindingExecutionContext | |
{ | |
public ModelBindingExecutionContext(System.Web.HttpContextBase httpContext, System.Web.ModelBinding.ModelStateDictionary modelState) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.HttpContextBase HttpContext { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.ModelBinding.ModelStateDictionary ModelState { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual TService GetService<TService>() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void PublishService<TService>(TService service) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual TService TryGetService<TService>() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class ModelError | |
{ | |
public ModelError(System.Exception exception) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ModelError(System.Exception exception, string errorMessage) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ModelError(string errorMessage) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string ErrorMessage { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Exception Exception { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class ModelErrorCollection : System.Collections.ObjectModel.Collection<System.Web.ModelBinding.ModelError> | |
{ | |
public ModelErrorCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Add(System.Exception exception) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Add(string errorMessage) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class ModelMetadata | |
{ | |
public const int DefaultOrder = 10000; | |
public ModelMetadata(System.Web.ModelBinding.ModelMetadataProvider provider, System.Type containerType, System.Func<object> modelAccessor, System.Type modelType, string propertyName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Collections.Generic.Dictionary<string, object> AdditionalValues { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Type ContainerType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool ConvertEmptyStringToNull { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string DataTypeName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string Description { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string DisplayFormatString { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string DisplayName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string EditFormatString { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool HideSurroundingHtml { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsComplexType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsNullableValueType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsReadOnly { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool IsRequired { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object Model { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Type ModelType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string NullDisplayText { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int Order { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Collections.Generic.IEnumerable<System.Web.ModelBinding.ModelMetadata> Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string PropertyName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected System.Web.ModelBinding.ModelMetadataProvider Provider { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool RequestValidationEnabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string ShortDisplayName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool ShowForDisplay { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool ShowForEdit { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string SimpleDisplayText { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string TemplateHint { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string Watermark { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string GetDisplayName() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual string GetSimpleDisplayText() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Collections.Generic.IEnumerable<System.Web.ModelBinding.ModelValidator> GetValidators(System.Web.ModelBinding.ModelBindingExecutionContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class ModelMetadataProvider | |
{ | |
protected ModelMetadataProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract System.Collections.Generic.IEnumerable<System.Web.ModelBinding.ModelMetadata> GetMetadataForProperties(object container, System.Type containerType); | |
public abstract System.Web.ModelBinding.ModelMetadata GetMetadataForProperty(System.Func<object> modelAccessor, System.Type containerType, string propertyName); | |
public abstract System.Web.ModelBinding.ModelMetadata GetMetadataForType(System.Func<object> modelAccessor, System.Type modelType); | |
} | |
public static partial class ModelMetadataProviders | |
{ | |
public static System.Web.ModelBinding.ModelMetadataProvider Current { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class ModelState | |
{ | |
public ModelState() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.ModelBinding.ModelErrorCollection Errors { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.ModelBinding.ValueProviderResult Value { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class ModelStateDictionary : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string, System.Web.ModelBinding.ModelState>>, System.Collections.Generic.IDictionary<string, System.Web.ModelBinding.ModelState>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, System.Web.ModelBinding.ModelState>>, System.Collections.IEnumerable | |
{ | |
public ModelStateDictionary() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ModelStateDictionary(System.Web.ModelBinding.ModelStateDictionary dictionary) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsReadOnly { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsValid { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.ModelBinding.ModelState this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Generic.ICollection<string> Keys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Generic.ICollection<System.Web.ModelBinding.ModelState> Values { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Collections.Generic.KeyValuePair<string, System.Web.ModelBinding.ModelState> item) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Add(string key, System.Web.ModelBinding.ModelState value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddModelError(string key, System.Exception exception) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddModelError(string key, string errorMessage) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool Contains(System.Collections.Generic.KeyValuePair<string, System.Web.ModelBinding.ModelState> item) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool ContainsKey(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void CopyTo(System.Collections.Generic.KeyValuePair<string, System.Web.ModelBinding.ModelState>[] array, int arrayIndex) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, System.Web.ModelBinding.ModelState>> GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsValidField(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Merge(System.Web.ModelBinding.ModelStateDictionary dictionary) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool Remove(System.Collections.Generic.KeyValuePair<string, System.Web.ModelBinding.ModelState> item) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool Remove(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetModelValue(string key, System.Web.ModelBinding.ValueProviderResult value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool TryGetValue(string key, out System.Web.ModelBinding.ModelState value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ModelValidatedEventArgs : System.EventArgs | |
{ | |
public ModelValidatedEventArgs(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelValidationNode parentNode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.ModelBinding.ModelBindingExecutionContext ModelBindingExecutionContext { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.ModelBinding.ModelValidationNode ParentNode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class ModelValidatingEventArgs : System.ComponentModel.CancelEventArgs | |
{ | |
public ModelValidatingEventArgs(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelValidationNode parentNode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.ModelBinding.ModelBindingExecutionContext ModelBindingExecutionContext { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.ModelBinding.ModelValidationNode ParentNode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class ModelValidationNode | |
{ | |
public ModelValidationNode(System.Web.ModelBinding.ModelMetadata modelMetadata, string modelStateKey) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ModelValidationNode(System.Web.ModelBinding.ModelMetadata modelMetadata, string modelStateKey, System.Collections.Generic.IEnumerable<System.Web.ModelBinding.ModelValidationNode> childNodes) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.Generic.ICollection<System.Web.ModelBinding.ModelValidationNode> ChildNodes { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.ModelBinding.ModelMetadata ModelMetadata { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ModelStateKey { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool SuppressValidation { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool ValidateAllProperties { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public event System.EventHandler<System.Web.ModelBinding.ModelValidatedEventArgs> Validated { add { } remove { } } | |
public event System.EventHandler<System.Web.ModelBinding.ModelValidatingEventArgs> Validating { add { } remove { } } | |
public void CombineWith(System.Web.ModelBinding.ModelValidationNode otherNode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Validate(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Validate(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelValidationNode parentNode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class ModelValidationResult | |
{ | |
public ModelValidationResult() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string MemberName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Message { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public abstract partial class ModelValidator | |
{ | |
protected ModelValidator(System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool IsRequired { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected internal System.Web.ModelBinding.ModelMetadata Metadata { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected internal System.Web.ModelBinding.ModelBindingExecutionContext ModelBindingExecutionContext { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.ModelBinding.ModelValidator GetModelValidator(System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract System.Collections.Generic.IEnumerable<System.Web.ModelBinding.ModelValidationResult> Validate(object container); | |
} | |
public abstract partial class ModelValidatorProvider | |
{ | |
protected ModelValidatorProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract System.Collections.Generic.IEnumerable<System.Web.ModelBinding.ModelValidator> GetValidators(System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context); | |
} | |
public partial class ModelValidatorProviderCollection : System.Collections.ObjectModel.Collection<System.Web.ModelBinding.ModelValidatorProvider> | |
{ | |
public ModelValidatorProviderCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ModelValidatorProviderCollection(System.Collections.Generic.IList<System.Web.ModelBinding.ModelValidatorProvider> list) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.Generic.IEnumerable<System.Web.ModelBinding.ModelValidator> GetValidators(System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void InsertItem(int index, System.Web.ModelBinding.ModelValidatorProvider item) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void SetItem(int index, System.Web.ModelBinding.ModelValidatorProvider item) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public static partial class ModelValidatorProviders | |
{ | |
public static System.Web.ModelBinding.ModelValidatorProviderCollection Providers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class MutableObjectModelBinder : System.Web.ModelBinding.IModelBinder | |
{ | |
public MutableObjectModelBinder() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool BindModel(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual bool CanUpdateProperty(System.Web.ModelBinding.ModelMetadata propertyMetadata) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual object CreateModel(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void EnsureModel(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual System.Collections.Generic.IEnumerable<System.Web.ModelBinding.ModelMetadata> GetMetadataForProperties(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void SetProperty(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext, System.Web.ModelBinding.ModelMetadata propertyMetadata, System.Web.ModelBinding.ComplexModelResult complexModelResult) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class MutableObjectModelBinderProvider : System.Web.ModelBinding.ModelBinderProvider | |
{ | |
public MutableObjectModelBinderProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.IModelBinder GetBinder(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class NameValueCollectionValueProvider : System.Web.ModelBinding.IUnvalidatedValueProvider, System.Web.ModelBinding.IValueProvider | |
{ | |
public NameValueCollectionValueProvider(System.Collections.Specialized.NameValueCollection collection, System.Collections.Specialized.NameValueCollection unvalidatedCollection, System.Globalization.CultureInfo culture) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public NameValueCollectionValueProvider(System.Collections.Specialized.NameValueCollection collection, System.Globalization.CultureInfo culture) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool ContainsPrefix(string prefix) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.ModelBinding.ValueProviderResult GetValue(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.ModelBinding.ValueProviderResult GetValue(string key, bool skipValidation) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false, AllowMultiple=false)] | |
public sealed partial class ProfileAttribute : System.Web.ModelBinding.ValueProviderSourceAttribute | |
{ | |
public ProfileAttribute() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ProfileAttribute(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string Key { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string GetModelName() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.IValueProvider GetValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ProfileValueProvider : System.Web.ModelBinding.SimpleValueProvider | |
{ | |
public ProfileValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) : base (default(System.Web.ModelBinding.ModelBindingExecutionContext)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object FetchValue(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false, AllowMultiple=false)] | |
public sealed partial class QueryStringAttribute : System.Web.ModelBinding.ValueProviderSourceAttribute, System.Web.ModelBinding.IUnvalidatedValueProviderSource, System.Web.ModelBinding.IValueProviderSource | |
{ | |
public QueryStringAttribute() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public QueryStringAttribute(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string Key { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool ValidateInput { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string GetModelName() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.IValueProvider GetValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class QueryStringValueProvider : System.Web.ModelBinding.NameValueCollectionValueProvider | |
{ | |
public QueryStringValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) : base (default(System.Collections.Specialized.NameValueCollection), default(System.Globalization.CultureInfo)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class RangeAttributeAdapter : System.Web.ModelBinding.DataAnnotationsModelValidator<System.ComponentModel.DataAnnotations.RangeAttribute> | |
{ | |
public RangeAttributeAdapter(System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context, System.ComponentModel.DataAnnotations.RangeAttribute attribute) : base (default(System.Web.ModelBinding.ModelMetadata), default(System.Web.ModelBinding.ModelBindingExecutionContext), default(System.ComponentModel.DataAnnotations.RangeAttribute)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override string GetLocalizedErrorMessage(string errorMessage) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class RegularExpressionAttributeAdapter : System.Web.ModelBinding.DataAnnotationsModelValidator<System.ComponentModel.DataAnnotations.RegularExpressionAttribute> | |
{ | |
public RegularExpressionAttributeAdapter(System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context, System.ComponentModel.DataAnnotations.RegularExpressionAttribute attribute) : base (default(System.Web.ModelBinding.ModelMetadata), default(System.Web.ModelBinding.ModelBindingExecutionContext), default(System.ComponentModel.DataAnnotations.RegularExpressionAttribute)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override string GetLocalizedErrorMessage(string errorMessage) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class RequiredAttributeAdapter : System.Web.ModelBinding.DataAnnotationsModelValidator<System.ComponentModel.DataAnnotations.RequiredAttribute> | |
{ | |
public RequiredAttributeAdapter(System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context, System.ComponentModel.DataAnnotations.RequiredAttribute attribute) : base (default(System.Web.ModelBinding.ModelMetadata), default(System.Web.ModelBinding.ModelBindingExecutionContext), default(System.ComponentModel.DataAnnotations.RequiredAttribute)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false, AllowMultiple=false)] | |
public sealed partial class RouteDataAttribute : System.Web.ModelBinding.ValueProviderSourceAttribute | |
{ | |
public RouteDataAttribute() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public RouteDataAttribute(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string Key { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string GetModelName() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.IValueProvider GetValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class RouteDataValueProvider : System.Web.ModelBinding.DictionaryValueProvider<object> | |
{ | |
public RouteDataValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) : base (default(System.Collections.Generic.IDictionary<string, object>), default(System.Globalization.CultureInfo)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false, AllowMultiple=false)] | |
public sealed partial class SessionAttribute : System.Web.ModelBinding.ValueProviderSourceAttribute | |
{ | |
public SessionAttribute() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public SessionAttribute(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string GetModelName() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.IValueProvider GetValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class SimpleModelBinderProvider : System.Web.ModelBinding.ModelBinderProvider | |
{ | |
public SimpleModelBinderProvider(System.Type modelType, System.Func<System.Web.ModelBinding.IModelBinder> modelBinderFactory) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public SimpleModelBinderProvider(System.Type modelType, System.Web.ModelBinding.IModelBinder modelBinder) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Type ModelType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool SuppressPrefixCheck { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.ModelBinding.IModelBinder GetBinder(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class SimpleValueProvider : System.Web.ModelBinding.IValueProvider | |
{ | |
protected SimpleValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected SimpleValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Globalization.CultureInfo cultureInfo) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected System.Web.ModelBinding.ModelBindingExecutionContext ModelBindingExecutionContext { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual bool ContainsPrefix(string prefix) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected abstract object FetchValue(string key); | |
public virtual System.Web.ModelBinding.ValueProviderResult GetValue(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class StringLengthAttributeAdapter : System.Web.ModelBinding.DataAnnotationsModelValidator<System.ComponentModel.DataAnnotations.StringLengthAttribute> | |
{ | |
public StringLengthAttributeAdapter(System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context, System.ComponentModel.DataAnnotations.StringLengthAttribute attribute) : base (default(System.Web.ModelBinding.ModelMetadata), default(System.Web.ModelBinding.ModelBindingExecutionContext), default(System.ComponentModel.DataAnnotations.StringLengthAttribute)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override string GetLocalizedErrorMessage(string errorMessage) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class TypeConverterModelBinder : System.Web.ModelBinding.IModelBinder | |
{ | |
public TypeConverterModelBinder() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool BindModel(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class TypeConverterModelBinderProvider : System.Web.ModelBinding.ModelBinderProvider | |
{ | |
public TypeConverterModelBinderProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.IModelBinder GetBinder(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class TypeMatchModelBinder : System.Web.ModelBinding.IModelBinder | |
{ | |
public TypeMatchModelBinder() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool BindModel(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.Web.ModelBinding.ModelBinderProviderOptionsAttribute(FrontOfList=true)] | |
public sealed partial class TypeMatchModelBinderProvider : System.Web.ModelBinding.ModelBinderProvider | |
{ | |
public TypeMatchModelBinderProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.IModelBinder GetBinder(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext, System.Web.ModelBinding.ModelBindingContext bindingContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false, AllowMultiple=false)] | |
public sealed partial class UserProfileAttribute : System.Attribute, System.Web.ModelBinding.IValueProviderSource | |
{ | |
public UserProfileAttribute() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.ModelBinding.IValueProvider GetValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class UserProfileValueProvider : System.Web.ModelBinding.SimpleValueProvider | |
{ | |
public UserProfileValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) : base (default(System.Web.ModelBinding.ModelBindingExecutionContext)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object FetchValue(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class ValidatableObjectAdapter : System.Web.ModelBinding.ModelValidator | |
{ | |
public ValidatableObjectAdapter(System.Web.ModelBinding.ModelMetadata metadata, System.Web.ModelBinding.ModelBindingExecutionContext context) : base (default(System.Web.ModelBinding.ModelMetadata), default(System.Web.ModelBinding.ModelBindingExecutionContext)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Collections.Generic.IEnumerable<System.Web.ModelBinding.ModelValidationResult> Validate(object container) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class ValueProviderCollection : System.Collections.ObjectModel.Collection<System.Web.ModelBinding.IValueProvider>, System.Web.ModelBinding.IUnvalidatedValueProvider, System.Web.ModelBinding.IValueProvider | |
{ | |
public ValueProviderCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ValueProviderCollection(System.Collections.Generic.IList<System.Web.ModelBinding.IValueProvider> list) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool ContainsPrefix(string prefix) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.ModelBinding.ValueProviderResult GetValue(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.ModelBinding.ValueProviderResult GetValue(string key, bool skipValidation) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void InsertItem(int index, System.Web.ModelBinding.IValueProvider item) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void SetItem(int index, System.Web.ModelBinding.IValueProvider item) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class ValueProviderResult | |
{ | |
protected ValueProviderResult() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ValueProviderResult(object rawValue, string attemptedValue, System.Globalization.CultureInfo culture) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string AttemptedValue { get { throw new System.PlatformNotSupportedException("NotSupported"); } protected set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Globalization.CultureInfo Culture { get { throw new System.PlatformNotSupportedException("NotSupported"); } protected set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object RawValue { get { throw new System.PlatformNotSupportedException("NotSupported"); } protected set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object ConvertTo(System.Type type) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual object ConvertTo(System.Type type, System.Globalization.CultureInfo culture) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class ValueProviderSourceAttribute : System.Attribute, System.Web.ModelBinding.IModelNameProvider, System.Web.ModelBinding.IValueProviderSource | |
{ | |
protected ValueProviderSourceAttribute() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GetModelName() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract System.Web.ModelBinding.IValueProvider GetValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext); | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false, AllowMultiple=false)] | |
public sealed partial class ViewStateAttribute : System.Web.ModelBinding.ValueProviderSourceAttribute | |
{ | |
public ViewStateAttribute() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ViewStateAttribute(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string Key { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string GetModelName() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.ModelBinding.IValueProvider GetValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ViewStateValueProvider : System.Web.ModelBinding.SimpleValueProvider | |
{ | |
public ViewStateValueProvider(System.Web.ModelBinding.ModelBindingExecutionContext modelBindingExecutionContext) : base (default(System.Web.ModelBinding.ModelBindingExecutionContext)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override object FetchValue(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
} | |
namespace System.Web.Profile | |
{ | |
[System.AttributeUsageAttribute(System.AttributeTargets.Property)] | |
public sealed partial class CustomProviderDataAttribute : System.Attribute | |
{ | |
public CustomProviderDataAttribute(string customProviderData) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string CustomProviderData { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsDefaultAttribute() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class DefaultProfile : System.Web.Profile.ProfileBase | |
{ | |
public DefaultProfile() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum ProfileAuthenticationOption | |
{ | |
Anonymous = 0, | |
Authenticated = 1, | |
All = 2, | |
} | |
public sealed partial class ProfileAutoSaveEventArgs : System.EventArgs | |
{ | |
public ProfileAutoSaveEventArgs(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.HttpContext Context { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool ContinueWithProfileAutoSave { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public delegate void ProfileAutoSaveEventHandler(object sender, System.Web.Profile.ProfileAutoSaveEventArgs e); | |
public partial class ProfileBase : System.Configuration.SettingsBase | |
{ | |
public ProfileBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsAnonymous { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsDirty { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object this[string propertyName] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.DateTime LastActivityDate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.DateTime LastUpdatedDate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static new System.Configuration.SettingsPropertyCollection Properties { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string UserName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.Profile.ProfileBase Create(string username) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Profile.ProfileBase Create(string username, bool isAuthenticated) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Profile.ProfileGroupBase GetProfileGroup(string groupName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object GetPropertyValue(string propertyName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Initialize(string username, bool isAuthenticated) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Save() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetPropertyValue(string propertyName, object propertyValue) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ProfileEventArgs : System.EventArgs | |
{ | |
public ProfileEventArgs(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.HttpContext Context { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Profile.ProfileBase Profile { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public delegate void ProfileEventHandler(object sender, System.Web.Profile.ProfileEventArgs e); | |
public partial class ProfileGroupBase | |
{ | |
public ProfileGroupBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object this[string propertyName] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object GetPropertyValue(string propertyName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Init(System.Web.Profile.ProfileBase parent, string myName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetPropertyValue(string propertyName, object propertyValue) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class ProfileInfo | |
{ | |
protected ProfileInfo() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ProfileInfo(string username, bool isAnonymous, System.DateTime lastActivityDate, System.DateTime lastUpdatedDate, int size) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool IsAnonymous { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.DateTime LastActivityDate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.DateTime LastUpdatedDate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int Size { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string UserName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class ProfileInfoCollection : System.Collections.ICollection, System.Collections.IEnumerable | |
{ | |
public ProfileInfoCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsSynchronized { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Profile.ProfileInfo this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object SyncRoot { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(System.Web.Profile.ProfileInfo profileInfo) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void CopyTo(System.Array array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void CopyTo(System.Web.Profile.ProfileInfo[] array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetReadOnly() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public static partial class ProfileManager | |
{ | |
public static string ApplicationName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool AutomaticSaveEnabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool Enabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.Profile.ProfileProvider Provider { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.Profile.ProfileProviderCollection Providers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static void AddDynamicProfileProperty(System.Web.Configuration.ProfilePropertySettings property) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static int DeleteInactiveProfiles(System.Web.Profile.ProfileAuthenticationOption authenticationOption, System.DateTime userInactiveSinceDate) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool DeleteProfile(string username) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static int DeleteProfiles(string[] usernames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static int DeleteProfiles(System.Web.Profile.ProfileInfoCollection profiles) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Profile.ProfileInfoCollection FindInactiveProfilesByUserName(System.Web.Profile.ProfileAuthenticationOption authenticationOption, string usernameToMatch, System.DateTime userInactiveSinceDate) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Profile.ProfileInfoCollection FindInactiveProfilesByUserName(System.Web.Profile.ProfileAuthenticationOption authenticationOption, string usernameToMatch, System.DateTime userInactiveSinceDate, int pageIndex, int pageSize, out int totalRecords) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Profile.ProfileInfoCollection FindProfilesByUserName(System.Web.Profile.ProfileAuthenticationOption authenticationOption, string usernameToMatch) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Profile.ProfileInfoCollection FindProfilesByUserName(System.Web.Profile.ProfileAuthenticationOption authenticationOption, string usernameToMatch, int pageIndex, int pageSize, out int totalRecords) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Profile.ProfileInfoCollection GetAllInactiveProfiles(System.Web.Profile.ProfileAuthenticationOption authenticationOption, System.DateTime userInactiveSinceDate) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Profile.ProfileInfoCollection GetAllInactiveProfiles(System.Web.Profile.ProfileAuthenticationOption authenticationOption, System.DateTime userInactiveSinceDate, int pageIndex, int pageSize, out int totalRecords) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Profile.ProfileInfoCollection GetAllProfiles(System.Web.Profile.ProfileAuthenticationOption authenticationOption) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Profile.ProfileInfoCollection GetAllProfiles(System.Web.Profile.ProfileAuthenticationOption authenticationOption, int pageIndex, int pageSize, out int totalRecords) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static int GetNumberOfInactiveProfiles(System.Web.Profile.ProfileAuthenticationOption authenticationOption, System.DateTime userInactiveSinceDate) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static int GetNumberOfProfiles(System.Web.Profile.ProfileAuthenticationOption authenticationOption) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class ProfileMigrateEventArgs : System.EventArgs | |
{ | |
public ProfileMigrateEventArgs(System.Web.HttpContext context, string anonymousId) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string AnonymousID { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpContext Context { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public delegate void ProfileMigrateEventHandler(object sender, System.Web.Profile.ProfileMigrateEventArgs e); | |
public sealed partial class ProfileModule : System.Web.IHttpModule | |
{ | |
public ProfileModule() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public event System.Web.Profile.ProfileMigrateEventHandler MigrateAnonymous { add { } remove { } } | |
public event System.Web.Profile.ProfileEventHandler Personalize { add { } remove { } } | |
public event System.Web.Profile.ProfileAutoSaveEventHandler ProfileAutoSaving { add { } remove { } } | |
public void Dispose() { } | |
public void Init(System.Web.HttpApplication app) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class ProfileProvider : System.Configuration.SettingsProvider | |
{ | |
protected ProfileProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract int DeleteInactiveProfiles(System.Web.Profile.ProfileAuthenticationOption authenticationOption, System.DateTime userInactiveSinceDate); | |
public abstract int DeleteProfiles(string[] usernames); | |
public abstract int DeleteProfiles(System.Web.Profile.ProfileInfoCollection profiles); | |
public abstract System.Web.Profile.ProfileInfoCollection FindInactiveProfilesByUserName(System.Web.Profile.ProfileAuthenticationOption authenticationOption, string usernameToMatch, System.DateTime userInactiveSinceDate, int pageIndex, int pageSize, out int totalRecords); | |
public abstract System.Web.Profile.ProfileInfoCollection FindProfilesByUserName(System.Web.Profile.ProfileAuthenticationOption authenticationOption, string usernameToMatch, int pageIndex, int pageSize, out int totalRecords); | |
public abstract System.Web.Profile.ProfileInfoCollection GetAllInactiveProfiles(System.Web.Profile.ProfileAuthenticationOption authenticationOption, System.DateTime userInactiveSinceDate, int pageIndex, int pageSize, out int totalRecords); | |
public abstract System.Web.Profile.ProfileInfoCollection GetAllProfiles(System.Web.Profile.ProfileAuthenticationOption authenticationOption, int pageIndex, int pageSize, out int totalRecords); | |
public abstract int GetNumberOfInactiveProfiles(System.Web.Profile.ProfileAuthenticationOption authenticationOption, System.DateTime userInactiveSinceDate); | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Property)] | |
public sealed partial class ProfileProviderAttribute : System.Attribute | |
{ | |
public ProfileProviderAttribute(string providerName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string ProviderName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class ProfileProviderCollection : System.Configuration.SettingsProviderCollection | |
{ | |
public ProfileProviderCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public new System.Web.Profile.ProfileProvider this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void Add(System.Configuration.Provider.ProviderBase provider) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Property)] | |
public sealed partial class SettingsAllowAnonymousAttribute : System.Attribute | |
{ | |
public SettingsAllowAnonymousAttribute(bool allow) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool Allow { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsDefaultAttribute() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class SqlProfileProvider : System.Web.Profile.ProfileProvider | |
{ | |
public SqlProfileProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string ApplicationName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int DeleteInactiveProfiles(System.Web.Profile.ProfileAuthenticationOption authenticationOption, System.DateTime userInactiveSinceDate) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int DeleteProfiles(string[] usernames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int DeleteProfiles(System.Web.Profile.ProfileInfoCollection profiles) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.Profile.ProfileInfoCollection FindInactiveProfilesByUserName(System.Web.Profile.ProfileAuthenticationOption authenticationOption, string usernameToMatch, System.DateTime userInactiveSinceDate, int pageIndex, int pageSize, out int totalRecords) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.Profile.ProfileInfoCollection FindProfilesByUserName(System.Web.Profile.ProfileAuthenticationOption authenticationOption, string usernameToMatch, int pageIndex, int pageSize, out int totalRecords) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.Profile.ProfileInfoCollection GetAllInactiveProfiles(System.Web.Profile.ProfileAuthenticationOption authenticationOption, System.DateTime userInactiveSinceDate, int pageIndex, int pageSize, out int totalRecords) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.Profile.ProfileInfoCollection GetAllProfiles(System.Web.Profile.ProfileAuthenticationOption authenticationOption, int pageIndex, int pageSize, out int totalRecords) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetNumberOfInactiveProfiles(System.Web.Profile.ProfileAuthenticationOption authenticationOption, System.DateTime userInactiveSinceDate) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Configuration.SettingsPropertyValueCollection GetPropertyValues(System.Configuration.SettingsContext sc, System.Configuration.SettingsPropertyCollection properties) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void SetPropertyValues(System.Configuration.SettingsContext sc, System.Configuration.SettingsPropertyValueCollection properties) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
} | |
namespace System.Web.Routing | |
{ | |
public partial class HttpMethodConstraint : System.Web.Routing.IRouteConstraint | |
{ | |
public HttpMethodConstraint(params string[] allowedMethods) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.Generic.ICollection<string> AllowedMethods { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected virtual bool Match(System.Web.HttpContextBase httpContext, System.Web.Routing.Route route, string parameterName, System.Web.Routing.RouteValueDictionary values, System.Web.Routing.RouteDirection routeDirection) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
bool System.Web.Routing.IRouteConstraint.Match(System.Web.HttpContextBase httpContext, System.Web.Routing.Route route, string parameterName, System.Web.Routing.RouteValueDictionary values, System.Web.Routing.RouteDirection routeDirection) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial interface IRouteConstraint | |
{ | |
bool Match(System.Web.HttpContextBase httpContext, System.Web.Routing.Route route, string parameterName, System.Web.Routing.RouteValueDictionary values, System.Web.Routing.RouteDirection routeDirection); | |
} | |
public partial interface IRouteHandler | |
{ | |
System.Web.IHttpHandler GetHttpHandler(System.Web.Routing.RequestContext requestContext); | |
} | |
public partial class PageRouteHandler : System.Web.Routing.IRouteHandler | |
{ | |
public PageRouteHandler(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public PageRouteHandler(string virtualPath, bool checkPhysicalUrlAccess) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool CheckPhysicalUrlAccess { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string VirtualPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.IHttpHandler GetHttpHandler(System.Web.Routing.RequestContext requestContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetSubstitutedVirtualPath(System.Web.Routing.RequestContext requestContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class RequestContext | |
{ | |
public RequestContext() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public RequestContext(System.Web.HttpContextBase httpContext, System.Web.Routing.RouteData routeData) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.HttpContextBase HttpContext { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.Routing.RouteData RouteData { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class Route : System.Web.Routing.RouteBase | |
{ | |
public Route(string url, System.Web.Routing.IRouteHandler routeHandler) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public Route(string url, System.Web.Routing.RouteValueDictionary defaults, System.Web.Routing.IRouteHandler routeHandler) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public Route(string url, System.Web.Routing.RouteValueDictionary defaults, System.Web.Routing.RouteValueDictionary constraints, System.Web.Routing.IRouteHandler routeHandler) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public Route(string url, System.Web.Routing.RouteValueDictionary defaults, System.Web.Routing.RouteValueDictionary constraints, System.Web.Routing.RouteValueDictionary dataTokens, System.Web.Routing.IRouteHandler routeHandler) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Routing.RouteValueDictionary Constraints { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Routing.RouteValueDictionary DataTokens { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Routing.RouteValueDictionary Defaults { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Routing.IRouteHandler RouteHandler { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Url { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.Routing.RouteData GetRouteData(System.Web.HttpContextBase httpContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.Routing.VirtualPathData GetVirtualPath(System.Web.Routing.RequestContext requestContext, System.Web.Routing.RouteValueDictionary values) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual bool ProcessConstraint(System.Web.HttpContextBase httpContext, object constraint, string parameterName, System.Web.Routing.RouteValueDictionary values, System.Web.Routing.RouteDirection routeDirection) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class RouteBase | |
{ | |
protected RouteBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool RouteExistingFiles { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public abstract System.Web.Routing.RouteData GetRouteData(System.Web.HttpContextBase httpContext); | |
public abstract System.Web.Routing.VirtualPathData GetVirtualPath(System.Web.Routing.RequestContext requestContext, System.Web.Routing.RouteValueDictionary values); | |
} | |
public partial class RouteCollection : System.Collections.ObjectModel.Collection<System.Web.Routing.RouteBase> | |
{ | |
public RouteCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public RouteCollection(System.Web.Hosting.VirtualPathProvider virtualPathProvider) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool AppendTrailingSlash { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Routing.RouteBase this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool LowercaseUrls { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool RouteExistingFiles { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(string name, System.Web.Routing.RouteBase item) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void ClearItems() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.IDisposable GetReadLock() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Routing.RouteData GetRouteData(System.Web.HttpContextBase httpContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Routing.VirtualPathData GetVirtualPath(System.Web.Routing.RequestContext requestContext, string name, System.Web.Routing.RouteValueDictionary values) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Routing.VirtualPathData GetVirtualPath(System.Web.Routing.RequestContext requestContext, System.Web.Routing.RouteValueDictionary values) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.IDisposable GetWriteLock() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Ignore(string url) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Ignore(string url, object constraints) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void InsertItem(int index, System.Web.Routing.RouteBase item) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Routing.Route MapPageRoute(string routeName, string routeUrl, string physicalFile) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Routing.Route MapPageRoute(string routeName, string routeUrl, string physicalFile, bool checkPhysicalUrlAccess) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Routing.Route MapPageRoute(string routeName, string routeUrl, string physicalFile, bool checkPhysicalUrlAccess, System.Web.Routing.RouteValueDictionary defaults) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Routing.Route MapPageRoute(string routeName, string routeUrl, string physicalFile, bool checkPhysicalUrlAccess, System.Web.Routing.RouteValueDictionary defaults, System.Web.Routing.RouteValueDictionary constraints) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Routing.Route MapPageRoute(string routeName, string routeUrl, string physicalFile, bool checkPhysicalUrlAccess, System.Web.Routing.RouteValueDictionary defaults, System.Web.Routing.RouteValueDictionary constraints, System.Web.Routing.RouteValueDictionary dataTokens) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void RemoveItem(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override void SetItem(int index, System.Web.Routing.RouteBase item) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class RouteData | |
{ | |
public RouteData() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public RouteData(System.Web.Routing.RouteBase route, System.Web.Routing.IRouteHandler routeHandler) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Routing.RouteValueDictionary DataTokens { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Routing.RouteBase Route { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Routing.IRouteHandler RouteHandler { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Routing.RouteValueDictionary Values { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string GetRequiredString(string valueName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum RouteDirection | |
{ | |
IncomingRequest = 0, | |
UrlGeneration = 1, | |
} | |
public partial class RouteTable | |
{ | |
public RouteTable() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Routing.RouteCollection Routes { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class RouteValueDictionary : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string, object>>, System.Collections.Generic.IDictionary<string, object>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, object>>, System.Collections.IEnumerable | |
{ | |
public RouteValueDictionary() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public RouteValueDictionary(System.Collections.Generic.IDictionary<string, object> dictionary) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public RouteValueDictionary(object values) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Generic.Dictionary<string, object>.KeyCollection Keys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,System.Object>>.IsReadOnly { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
System.Collections.Generic.ICollection<string> System.Collections.Generic.IDictionary<System.String,System.Object>.Keys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
System.Collections.Generic.ICollection<object> System.Collections.Generic.IDictionary<System.String,System.Object>.Values { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Generic.Dictionary<string, object>.ValueCollection Values { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(string key, object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool ContainsKey(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool ContainsValue(object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.Generic.Dictionary<string, object>.Enumerator GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool Remove(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,System.Object>>.Add(System.Collections.Generic.KeyValuePair<string, object> item) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,System.Object>>.Contains(System.Collections.Generic.KeyValuePair<string, object> item) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,System.Object>>.CopyTo(System.Collections.Generic.KeyValuePair<string, object>[] array, int arrayIndex) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,System.Object>>.Remove(System.Collections.Generic.KeyValuePair<string, object> item) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, object>> System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String,System.Object>>.GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool TryGetValue(string key, out object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class StopRoutingHandler : System.Web.Routing.IRouteHandler | |
{ | |
public StopRoutingHandler() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual System.Web.IHttpHandler GetHttpHandler(System.Web.Routing.RequestContext requestContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
System.Web.IHttpHandler System.Web.Routing.IRouteHandler.GetHttpHandler(System.Web.Routing.RequestContext requestContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class UrlRoutingHandler : System.Web.IHttpHandler | |
{ | |
protected UrlRoutingHandler() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual bool IsReusable { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Routing.RouteCollection RouteCollection { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
bool System.Web.IHttpHandler.IsReusable { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected virtual void ProcessRequest(System.Web.HttpContext httpContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected virtual void ProcessRequest(System.Web.HttpContextBase httpContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.Web.IHttpHandler.ProcessRequest(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected abstract void VerifyAndProcessRequest(System.Web.IHttpHandler httpHandler, System.Web.HttpContextBase httpContext); | |
} | |
public partial class UrlRoutingModule : System.Web.IHttpModule | |
{ | |
public UrlRoutingModule() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Routing.RouteCollection RouteCollection { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected virtual void Dispose() { } | |
protected virtual void Init(System.Web.HttpApplication application) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void PostMapRequestHandler(System.Web.HttpContextBase context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void PostResolveRequestCache(System.Web.HttpContextBase context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.Web.IHttpModule.Dispose() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.Web.IHttpModule.Init(System.Web.HttpApplication application) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class VirtualPathData | |
{ | |
public VirtualPathData(System.Web.Routing.RouteBase route, string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.Routing.RouteValueDictionary DataTokens { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Routing.RouteBase Route { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string VirtualPath { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
} | |
namespace System.Web.Security | |
{ | |
public enum ActiveDirectoryConnectionProtection | |
{ | |
None = 0, | |
Ssl = 1, | |
SignAndSeal = 2, | |
} | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)] | |
public partial class ActiveDirectoryMembershipProvider : System.Web.Security.MembershipProvider | |
{ | |
public ActiveDirectoryMembershipProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string ApplicationName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Security.ActiveDirectoryConnectionProtection CurrentConnectionProtection { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool EnablePasswordReset { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool EnablePasswordRetrieval { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool EnableSearchMethods { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int MaxInvalidPasswordAttempts { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int MinRequiredNonAlphanumericCharacters { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int MinRequiredPasswordLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int PasswordAnswerAttemptLockoutDuration { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int PasswordAttemptWindow { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.Security.MembershipPasswordFormat PasswordFormat { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string PasswordStrengthRegularExpression { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RequiresQuestionAndAnswer { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RequiresUniqueEmail { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)] | |
public override bool ChangePassword(string username, string oldPassword, string newPassword) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)] | |
public override bool ChangePasswordQuestionAndAnswer(string username, string password, string newPasswordQuestion, string newPasswordAnswer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)] | |
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) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)] | |
public override bool DeleteUser(string username, bool deleteAllRelatedData) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)] | |
public override System.Web.Security.MembershipUserCollection FindUsersByEmail(string emailToMatch, int pageIndex, int pageSize, out int totalRecords) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)] | |
public override System.Web.Security.MembershipUserCollection FindUsersByName(string usernameToMatch, int pageIndex, int pageSize, out int totalRecords) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GeneratePassword() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)] | |
public override System.Web.Security.MembershipUserCollection GetAllUsers(int pageIndex, int pageSize, out int totalRecords) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetNumberOfUsersOnline() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetPassword(string username, string passwordAnswer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)] | |
public override System.Web.Security.MembershipUser GetUser(object providerUserKey, bool userIsOnline) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)] | |
public override System.Web.Security.MembershipUser GetUser(string username, bool userIsOnline) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)] | |
public override string GetUserNameByEmail(string email) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)] | |
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)] | |
public override string ResetPassword(string username, string passwordAnswer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)] | |
public override bool UnlockUser(string username) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)] | |
public override void UpdateUser(System.Web.Security.MembershipUser user) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)] | |
[System.DirectoryServices.DirectoryServicesPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)] | |
public override bool ValidateUser(string username, string password) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class ActiveDirectoryMembershipUser : System.Web.Security.MembershipUser | |
{ | |
protected ActiveDirectoryMembershipUser() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ActiveDirectoryMembershipUser(string providerName, string name, object providerUserKey, string email, string passwordQuestion, string comment, bool isApproved, bool isLockedOut, System.DateTime creationDate, System.DateTime lastLoginDate, System.DateTime lastActivityDate, System.DateTime lastPasswordChangedDate, System.DateTime lastLockoutDate) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string Comment { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string Email { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsApproved { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.DateTime LastActivityDate { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.DateTime LastLoginDate { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override object ProviderUserKey { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public sealed partial class AnonymousIdentificationEventArgs : System.EventArgs | |
{ | |
public AnonymousIdentificationEventArgs(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string AnonymousID { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpContext Context { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public delegate void AnonymousIdentificationEventHandler(object sender, System.Web.Security.AnonymousIdentificationEventArgs e); | |
public sealed partial class AnonymousIdentificationModule : System.Web.IHttpModule | |
{ | |
public AnonymousIdentificationModule() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool Enabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public event System.Web.Security.AnonymousIdentificationEventHandler Creating { add { } remove { } } | |
public static void ClearAnonymousIdentifier() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Dispose() { } | |
public void Init(System.Web.HttpApplication app) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class AuthorizationStoreRoleProvider : System.Web.Security.RoleProvider | |
{ | |
public AuthorizationStoreRoleProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string ApplicationName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int CacheRefreshInterval { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ScopeName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void AddUsersToRoles(string[] usernames, string[] roleNames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void CreateRole(string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool DeleteRole(string roleName, bool throwOnPopulatedRole) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string[] FindUsersInRole(string roleName, string usernameToMatch) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string[] GetAllRoles() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string[] GetRolesForUser(string username) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string[] GetUsersInRole(string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool IsUserInRole(string username, string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RemoveUsersFromRoles(string[] userNames, string[] roleNames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool RoleExists(string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum CookieProtection | |
{ | |
None = 0, | |
Validation = 1, | |
Encryption = 2, | |
All = 3, | |
} | |
public sealed partial class DefaultAuthenticationEventArgs : System.EventArgs | |
{ | |
public DefaultAuthenticationEventArgs(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.HttpContext Context { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public delegate void DefaultAuthenticationEventHandler(object sender, System.Web.Security.DefaultAuthenticationEventArgs e); | |
public sealed partial class DefaultAuthenticationModule : System.Web.IHttpModule | |
{ | |
public DefaultAuthenticationModule() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public event System.Web.Security.DefaultAuthenticationEventHandler Authenticate { add { } remove { } } | |
public void Dispose() { } | |
public void Init(System.Web.HttpApplication app) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class FileAuthorizationModule : System.Web.IHttpModule | |
{ | |
public FileAuthorizationModule() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool CheckFileAccessForUser(string virtualPath, System.IntPtr token, string verb) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Dispose() { } | |
public void Init(System.Web.HttpApplication app) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class FormsAuthentication | |
{ | |
public FormsAuthentication() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string CookieDomain { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.HttpCookieMode CookieMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.SameSiteMode CookieSameSite { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool CookiesSupported { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string DefaultUrl { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool EnableCrossAppRedirects { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string FormsCookieName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string FormsCookiePath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool IsEnabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string LoginUrl { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool RequireSSL { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool SlidingExpiration { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.Configuration.TicketCompatibilityMode TicketCompatibilityMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.TimeSpan Timeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool Authenticate(string name, string password) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Security.FormsAuthenticationTicket Decrypt(string encryptedTicket) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void EnableFormsAuthentication(System.Collections.Specialized.NameValueCollection configurationData) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string Encrypt(System.Web.Security.FormsAuthenticationTicket ticket) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.HttpCookie GetAuthCookie(string userName, bool createPersistentCookie) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.HttpCookie GetAuthCookie(string userName, bool createPersistentCookie, string strCookiePath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string GetRedirectUrl(string userName, bool createPersistentCookie) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string HashPasswordForStoringInConfigFile(string password, string passwordFormat) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void Initialize() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RedirectFromLoginPage(string userName, bool createPersistentCookie) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RedirectFromLoginPage(string userName, bool createPersistentCookie, string strCookiePath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RedirectToLoginPage() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RedirectToLoginPage(string extraQueryString) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Security.FormsAuthenticationTicket RenewTicketIfOld(System.Web.Security.FormsAuthenticationTicket tOld) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void SetAuthCookie(string userName, bool createPersistentCookie) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void SetAuthCookie(string userName, bool createPersistentCookie, string strCookiePath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void SignOut() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class FormsAuthenticationEventArgs : System.EventArgs | |
{ | |
public FormsAuthenticationEventArgs(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.HttpContext Context { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Security.Principal.IPrincipal User { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public delegate void FormsAuthenticationEventHandler(object sender, System.Web.Security.FormsAuthenticationEventArgs e); | |
public sealed partial class FormsAuthenticationModule : System.Web.IHttpModule | |
{ | |
public FormsAuthenticationModule() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public event System.Web.Security.FormsAuthenticationEventHandler Authenticate { add { } remove { } } | |
public void Dispose() { } | |
public void Init(System.Web.HttpApplication app) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class FormsAuthenticationTicket | |
{ | |
public FormsAuthenticationTicket(int version, string name, System.DateTime issueDate, System.DateTime expiration, bool isPersistent, string userData) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public FormsAuthenticationTicket(int version, string name, System.DateTime issueDate, System.DateTime expiration, bool isPersistent, string userData, string cookiePath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public FormsAuthenticationTicket(string name, bool isPersistent, int timeout) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string CookiePath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.DateTime Expiration { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Expired { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsPersistent { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.DateTime IssueDate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string UserData { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int Version { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public partial class FormsIdentity : System.Security.Claims.ClaimsIdentity | |
{ | |
public FormsIdentity(System.Web.Security.FormsAuthenticationTicket ticket) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected FormsIdentity(System.Web.Security.FormsIdentity identity) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string AuthenticationType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.Generic.IEnumerable<System.Security.Claims.Claim> Claims { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool IsAuthenticated { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Security.FormsAuthenticationTicket Ticket { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Security.Claims.ClaimsIdentity Clone() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public static partial class MachineKey | |
{ | |
public static byte[] Decode(string encodedData, System.Web.Security.MachineKeyProtection protectionOption) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string Encode(byte[] data, System.Web.Security.MachineKeyProtection protectionOption) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static byte[] Protect(byte[] userData, params string[] purposes) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static byte[] Unprotect(byte[] protectedData, params string[] purposes) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum MachineKeyProtection | |
{ | |
All = 0, | |
Encryption = 1, | |
Validation = 2, | |
} | |
public static partial class Membership | |
{ | |
public static string ApplicationName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool EnablePasswordReset { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool EnablePasswordRetrieval { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string HashAlgorithmType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static int MaxInvalidPasswordAttempts { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static int MinRequiredNonAlphanumericCharacters { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static int MinRequiredPasswordLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static int PasswordAttemptWindow { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string PasswordStrengthRegularExpression { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.Security.MembershipProvider Provider { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.Security.MembershipProviderCollection Providers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool RequiresQuestionAndAnswer { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static int UserIsOnlineTimeWindow { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static event System.Web.Security.MembershipValidatePasswordEventHandler ValidatingPassword { add { } remove { } } | |
public static System.Web.Security.MembershipUser CreateUser(string username, string password) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Security.MembershipUser CreateUser(string username, string password, string email) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static 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) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Security.MembershipUser CreateUser(string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, out System.Web.Security.MembershipCreateStatus status) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool DeleteUser(string username) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool DeleteUser(string username, bool deleteAllRelatedData) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Security.MembershipUserCollection FindUsersByEmail(string emailToMatch) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Security.MembershipUserCollection FindUsersByEmail(string emailToMatch, int pageIndex, int pageSize, out int totalRecords) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Security.MembershipUserCollection FindUsersByName(string usernameToMatch) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Security.MembershipUserCollection FindUsersByName(string usernameToMatch, int pageIndex, int pageSize, out int totalRecords) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string GeneratePassword(int length, int numberOfNonAlphanumericCharacters) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Security.MembershipUserCollection GetAllUsers() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Security.MembershipUserCollection GetAllUsers(int pageIndex, int pageSize, out int totalRecords) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static int GetNumberOfUsersOnline() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Security.MembershipUser GetUser() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Security.MembershipUser GetUser(bool userIsOnline) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Security.MembershipUser GetUser(object providerUserKey) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Security.MembershipUser GetUser(object providerUserKey, bool userIsOnline) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Security.MembershipUser GetUser(string username) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.Security.MembershipUser GetUser(string username, bool userIsOnline) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string GetUserNameByEmail(string emailToMatch) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void UpdateUser(System.Web.Security.MembershipUser user) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool ValidateUser(string username, string password) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.AttributeUsageAttribute(System.AttributeTargets.Field | System.AttributeTargets.Parameter | System.AttributeTargets.Property, AllowMultiple=false)] | |
public partial class MembershipPasswordAttribute : System.ComponentModel.DataAnnotations.ValidationAttribute | |
{ | |
public MembershipPasswordAttribute() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string MinNonAlphanumericCharactersError { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string MinPasswordLengthError { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int MinRequiredNonAlphanumericCharacters { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int MinRequiredPasswordLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string PasswordStrengthError { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int? PasswordStrengthRegexTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string PasswordStrengthRegularExpression { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Type ResourceType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string FormatErrorMessage(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override System.ComponentModel.DataAnnotations.ValidationResult IsValid(object value, System.ComponentModel.DataAnnotations.ValidationContext validationContext) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class PassportAuthenticationEventArgs : System.EventArgs | |
{ | |
public PassportAuthenticationEventArgs(System.Web.Security.PassportIdentity identity, System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.HttpContext Context { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Security.PassportIdentity Identity { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Security.Principal.IPrincipal User { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public delegate void PassportAuthenticationEventHandler(object sender, System.Web.Security.PassportAuthenticationEventArgs e); | |
public sealed partial class PassportAuthenticationModule : System.Web.IHttpModule | |
{ | |
public PassportAuthenticationModule() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public event System.Web.Security.PassportAuthenticationEventHandler Authenticate { add { } remove { } } | |
public void Dispose() { } | |
public void Init(System.Web.HttpApplication app) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class PassportIdentity : System.IDisposable, System.Security.Principal.IIdentity | |
{ | |
public PassportIdentity() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string AuthenticationType { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int Error { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool GetFromNetworkServer { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool HasSavedPassword { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool HasTicket { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string HexPUID { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsAuthenticated { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string this[string strProfileName] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Name { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int TicketAge { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int TimeSinceSignIn { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string AuthUrl() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string AuthUrl(string strReturnUrl) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string AuthUrl(string strReturnUrl, int iTimeWindow, bool fForceLogin, string strCoBrandedArgs, int iLangID, string strNameSpace, int iKPP, bool bUseSecureAuth) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string AuthUrl(string strReturnUrl, int iTimeWindow, int iForceLogin, string strCoBrandedArgs, int iLangID, string strNameSpace, int iKPP, int iUseSecureAuth) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string AuthUrl2() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string AuthUrl2(string strReturnUrl) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string AuthUrl2(string strReturnUrl, int iTimeWindow, bool fForceLogin, string strCoBrandedArgs, int iLangID, string strNameSpace, int iKPP, bool bUseSecureAuth) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string AuthUrl2(string strReturnUrl, int iTimeWindow, int iForceLogin, string strCoBrandedArgs, int iLangID, string strNameSpace, int iKPP, int iUseSecureAuth) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string Compress(string strData) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool CryptIsValid() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static int CryptPutHost(string strHost) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static int CryptPutSite(string strSite) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string Decompress(string strData) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string Decrypt(string strData) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string Encrypt(string strData) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object GetCurrentConfig(string strAttribute) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetDomainAttribute(string strAttribute, int iLCID, string strDomain) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetDomainFromMemberName(string strMemberName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool GetIsAuthenticated(int iTimeWindow, bool bForceLogin, bool bCheckSecure) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool GetIsAuthenticated(int iTimeWindow, int iForceLogin, int iCheckSecure) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetLoginChallenge() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetLoginChallenge(string strReturnUrl) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetLoginChallenge(string szRetURL, int iTimeWindow, int fForceLogin, string szCOBrandArgs, int iLangID, string strNameSpace, int iKPP, int iUseSecureAuth, object oExtraParams) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object GetOption(string strOpt) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public object GetProfileObject(string strProfileName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool HasFlag(int iFlagMask) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool HasProfile(string strProfile) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool HaveConsent(bool bNeedFullConsent, bool bNeedBirthdate) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int LoginUser() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int LoginUser(string strReturnUrl) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int LoginUser(string szRetURL, int iTimeWindow, bool fForceLogin, string szCOBrandArgs, int iLangID, string strNameSpace, int iKPP, bool fUseSecureAuth, object oExtraParams) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int LoginUser(string szRetURL, int iTimeWindow, int fForceLogin, string szCOBrandArgs, int iLangID, string strNameSpace, int iKPP, int iUseSecureAuth, object oExtraParams) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string LogoTag() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string LogoTag(string strReturnUrl) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string LogoTag(string strReturnUrl, int iTimeWindow, bool fForceLogin, string strCoBrandedArgs, int iLangID, bool fSecure, string strNameSpace, int iKPP, bool bUseSecureAuth) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string LogoTag(string strReturnUrl, int iTimeWindow, int iForceLogin, string strCoBrandedArgs, int iLangID, int iSecure, string strNameSpace, int iKPP, int iUseSecureAuth) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string LogoTag2() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string LogoTag2(string strReturnUrl) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string LogoTag2(string strReturnUrl, int iTimeWindow, bool fForceLogin, string strCoBrandedArgs, int iLangID, bool fSecure, string strNameSpace, int iKPP, bool bUseSecureAuth) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string LogoTag2(string strReturnUrl, int iTimeWindow, int iForceLogin, string strCoBrandedArgs, int iLangID, int iSecure, string strNameSpace, int iKPP, int iUseSecureAuth) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string LogoutURL() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string LogoutURL(string szReturnURL, string szCOBrandArgs, int iLangID, string strDomain, int iUseSecureAuth) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetOption(string strOpt, object vOpt) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void SignOut(string strSignOutDotGifFileName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.IDisposable.Dispose() { } | |
public object Ticket(string strAttribute) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class PassportPrincipal : System.Security.Principal.GenericPrincipal | |
{ | |
public PassportPrincipal(System.Web.Security.PassportIdentity identity, string[] roles) : base (default(System.Security.Principal.IIdentity), default(string[])) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class RoleManagerEventArgs : System.EventArgs | |
{ | |
public RoleManagerEventArgs(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.HttpContext Context { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool RolesPopulated { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public delegate void RoleManagerEventHandler(object sender, System.Web.Security.RoleManagerEventArgs e); | |
public sealed partial class RoleManagerModule : System.Web.IHttpModule | |
{ | |
public RoleManagerModule() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public event System.Web.Security.RoleManagerEventHandler GetRoles { add { } remove { } } | |
public void Dispose() { } | |
public void Init(System.Web.HttpApplication app) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class RolePrincipal : System.Security.Claims.ClaimsPrincipal, System.Runtime.Serialization.ISerializable | |
{ | |
protected RolePrincipal(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public RolePrincipal(System.Security.Principal.IIdentity identity) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public RolePrincipal(System.Security.Principal.IIdentity identity, string encryptedTicket) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public RolePrincipal(string providerName, System.Security.Principal.IIdentity identity) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public RolePrincipal(string providerName, System.Security.Principal.IIdentity identity, string encryptedTicket) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool CachedListChanged { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string CookiePath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Expired { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.DateTime ExpireDate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Security.Principal.IIdentity Identity { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsRoleListCached { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.DateTime IssueDate { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ProviderName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int Version { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string[] GetRoles() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool IsInRole(string role) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SetDirty() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string ToEncryptedTicket() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class RoleProviderCollection : System.Configuration.Provider.ProviderCollection | |
{ | |
public RoleProviderCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public new System.Web.Security.RoleProvider this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void Add(System.Configuration.Provider.ProviderBase provider) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void CopyTo(System.Web.Security.RoleProvider[] array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public static partial class Roles | |
{ | |
public static string ApplicationName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool CacheRolesInCookie { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string CookieName { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string CookiePath { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.Security.CookieProtection CookieProtectionValue { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool CookieRequireSSL { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool CookieSlidingExpiration { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static int CookieTimeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool CreatePersistentCookie { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static string Domain { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static bool Enabled { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static int MaxCachedResults { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.Security.RoleProvider Provider { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static System.Web.Security.RoleProviderCollection Providers { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static void AddUsersToRole(string[] usernames, string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void AddUsersToRoles(string[] usernames, string[] roleNames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void AddUserToRole(string username, string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void AddUserToRoles(string username, string[] roleNames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void CreateRole(string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void DeleteCookie() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool DeleteRole(string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool DeleteRole(string roleName, bool throwOnPopulatedRole) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string[] FindUsersInRole(string roleName, string usernameToMatch) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string[] GetAllRoles() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string[] GetRolesForUser() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string[] GetRolesForUser(string username) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string[] GetUsersInRole(string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool IsUserInRole(string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool IsUserInRole(string username, string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RemoveUserFromRole(string username, string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RemoveUserFromRoles(string username, string[] roleNames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RemoveUsersFromRole(string[] usernames, string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RemoveUsersFromRoles(string[] usernames, string[] roleNames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool RoleExists(string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class SqlMembershipProvider : System.Web.Security.MembershipProvider | |
{ | |
public SqlMembershipProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string ApplicationName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool EnablePasswordReset { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool EnablePasswordRetrieval { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int MaxInvalidPasswordAttempts { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int MinRequiredNonAlphanumericCharacters { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int MinRequiredPasswordLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override int PasswordAttemptWindow { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Web.Security.MembershipPasswordFormat PasswordFormat { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override string PasswordStrengthRegularExpression { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RequiresQuestionAndAnswer { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool RequiresUniqueEmail { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override bool ChangePassword(string username, string oldPassword, string newPassword) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool ChangePasswordQuestionAndAnswer(string username, string password, string newPasswordQuestion, string newPasswordAnswer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
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) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool DeleteUser(string username, bool deleteAllRelatedData) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.Security.MembershipUserCollection FindUsersByEmail(string emailToMatch, int pageIndex, int pageSize, out int totalRecords) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.Security.MembershipUserCollection FindUsersByName(string usernameToMatch, int pageIndex, int pageSize, out int totalRecords) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string GeneratePassword() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.Security.MembershipUserCollection GetAllUsers(int pageIndex, int pageSize, out int totalRecords) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetNumberOfUsersOnline() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetPassword(string username, string passwordAnswer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.Security.MembershipUser GetUser(object providerUserKey, bool userIsOnline) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Web.Security.MembershipUser GetUser(string username, bool userIsOnline) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string GetUserNameByEmail(string email) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string ResetPassword(string username, string passwordAnswer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool UnlockUser(string username) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void UpdateUser(System.Web.Security.MembershipUser user) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool ValidateUser(string username, string password) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class SqlRoleProvider : System.Web.Security.RoleProvider | |
{ | |
public SqlRoleProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string ApplicationName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void AddUsersToRoles(string[] usernames, string[] roleNames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void CreateRole(string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool DeleteRole(string roleName, bool throwOnPopulatedRole) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string[] FindUsersInRole(string roleName, string usernameToMatch) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string[] GetAllRoles() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string[] GetRolesForUser(string username) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string[] GetUsersInRole(string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool IsUserInRole(string username, string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RemoveUsersFromRoles(string[] usernames, string[] roleNames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool RoleExists(string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class UrlAuthorizationModule : System.Web.IHttpModule | |
{ | |
public UrlAuthorizationModule() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool CheckUrlAccessForPrincipal(string virtualPath, System.Security.Principal.IPrincipal user, string verb) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Dispose() { } | |
public void Init(System.Web.HttpApplication app) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class WindowsAuthenticationEventArgs : System.EventArgs | |
{ | |
public WindowsAuthenticationEventArgs(System.Security.Principal.WindowsIdentity identity, System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.HttpContext Context { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Security.Principal.WindowsIdentity Identity { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Security.Principal.IPrincipal User { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public delegate void WindowsAuthenticationEventHandler(object sender, System.Web.Security.WindowsAuthenticationEventArgs e); | |
public sealed partial class WindowsAuthenticationModule : System.Web.IHttpModule | |
{ | |
public WindowsAuthenticationModule() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public event System.Web.Security.WindowsAuthenticationEventHandler Authenticate { add { } remove { } } | |
public void Dispose() { } | |
public void Init(System.Web.HttpApplication app) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class WindowsTokenRoleProvider : System.Web.Security.RoleProvider | |
{ | |
public WindowsTokenRoleProvider() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string ApplicationName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void AddUsersToRoles(string[] usernames, string[] roleNames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void CreateRole(string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool DeleteRole(string roleName, bool throwOnPopulatedRole) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string[] FindUsersInRole(string roleName, string usernameToMatch) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string[] GetAllRoles() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string[] GetRolesForUser(string username) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override string[] GetUsersInRole(string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsUserInRole(string username, System.Security.Principal.WindowsBuiltInRole role) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool IsUserInRole(string username, string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void RemoveUsersFromRoles(string[] usernames, string[] roleNames) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool RoleExists(string roleName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
} | |
namespace System.Web.Security.AntiXss | |
{ | |
public partial class AntiXssEncoder : System.Web.Util.HttpEncoder | |
{ | |
public AntiXssEncoder() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string CssEncode(string input) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal override void HtmlAttributeEncode(string value, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string HtmlEncode(string input, bool useNamedEntities) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal override void HtmlEncode(string value, System.IO.TextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string HtmlFormUrlEncode(string input) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string HtmlFormUrlEncode(string input, int codePage) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string HtmlFormUrlEncode(string input, System.Text.Encoding inputEncoding) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void MarkAsSafe(System.Web.Security.AntiXss.LowerCodeCharts lowerCodeCharts, System.Web.Security.AntiXss.LowerMidCodeCharts lowerMidCodeCharts, System.Web.Security.AntiXss.MidCodeCharts midCodeCharts, System.Web.Security.AntiXss.UpperMidCodeCharts upperMidCodeCharts, System.Web.Security.AntiXss.UpperCodeCharts upperCodeCharts) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal override byte[] UrlEncode(byte[] bytes, int offset, int count) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string UrlEncode(string input) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string UrlEncode(string input, int codePage) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string UrlEncode(string input, System.Text.Encoding inputEncoding) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal override string UrlPathEncode(string value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string XmlAttributeEncode(string input) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static string XmlEncode(string input) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.FlagsAttribute] | |
public enum LowerCodeCharts : long | |
{ | |
None = (long)0, | |
BasicLatin = (long)1, | |
C1ControlsAndLatin1Supplement = (long)2, | |
LatinExtendedA = (long)4, | |
LatinExtendedB = (long)8, | |
IpaExtensions = (long)16, | |
SpacingModifierLetters = (long)32, | |
CombiningDiacriticalMarks = (long)64, | |
Default = (long)127, | |
GreekAndCoptic = (long)128, | |
Cyrillic = (long)256, | |
CyrillicSupplement = (long)512, | |
Armenian = (long)1024, | |
Hebrew = (long)2048, | |
Arabic = (long)4096, | |
Syriac = (long)8192, | |
ArabicSupplement = (long)16384, | |
Thaana = (long)32768, | |
Nko = (long)65536, | |
Samaritan = (long)131072, | |
Devanagari = (long)262144, | |
Bengali = (long)524288, | |
Gurmukhi = (long)1048576, | |
Gujarati = (long)2097152, | |
Oriya = (long)4194304, | |
Tamil = (long)8388608, | |
Telugu = (long)16777216, | |
Kannada = (long)33554432, | |
Malayalam = (long)67108864, | |
Sinhala = (long)134217728, | |
Thai = (long)268435456, | |
Lao = (long)536870912, | |
Tibetan = (long)1073741824, | |
} | |
[System.FlagsAttribute] | |
public enum LowerMidCodeCharts : long | |
{ | |
None = (long)0, | |
Myanmar = (long)1, | |
Georgian = (long)2, | |
HangulJamo = (long)4, | |
Ethiopic = (long)8, | |
EthiopicSupplement = (long)16, | |
Cherokee = (long)32, | |
UnifiedCanadianAboriginalSyllabics = (long)64, | |
Ogham = (long)128, | |
Runic = (long)256, | |
Tagalog = (long)512, | |
Hanunoo = (long)1024, | |
Buhid = (long)2048, | |
Tagbanwa = (long)4096, | |
Khmer = (long)8192, | |
Mongolian = (long)16384, | |
UnifiedCanadianAboriginalSyllabicsExtended = (long)32768, | |
Limbu = (long)65536, | |
TaiLe = (long)131072, | |
NewTaiLue = (long)262144, | |
KhmerSymbols = (long)524288, | |
Buginese = (long)1048576, | |
TaiTham = (long)2097152, | |
Balinese = (long)4194304, | |
Sudanese = (long)8388608, | |
Lepcha = (long)16777216, | |
OlChiki = (long)33554432, | |
VedicExtensions = (long)67108864, | |
PhoneticExtensions = (long)134217728, | |
PhoneticExtensionsSupplement = (long)268435456, | |
CombiningDiacriticalMarksSupplement = (long)536870912, | |
LatinExtendedAdditional = (long)1073741824, | |
} | |
[System.FlagsAttribute] | |
public enum MidCodeCharts : long | |
{ | |
None = (long)0, | |
GreekExtended = (long)1, | |
GeneralPunctuation = (long)2, | |
SuperscriptsAndSubscripts = (long)4, | |
CurrencySymbols = (long)8, | |
CombiningDiacriticalMarksForSymbols = (long)16, | |
LetterlikeSymbols = (long)32, | |
NumberForms = (long)64, | |
Arrows = (long)128, | |
MathematicalOperators = (long)256, | |
MiscellaneousTechnical = (long)512, | |
ControlPictures = (long)1024, | |
OpticalCharacterRecognition = (long)2048, | |
EnclosedAlphanumerics = (long)4096, | |
BoxDrawing = (long)8192, | |
BlockElements = (long)16384, | |
EthiopicExtended = (long)16384, | |
GeometricShapes = (long)32768, | |
MiscellaneousSymbols = (long)65536, | |
Dingbats = (long)131072, | |
MiscellaneousMathematicalSymbolsA = (long)262144, | |
SupplementalArrowsA = (long)524288, | |
BraillePatterns = (long)1048576, | |
SupplementalArrowsB = (long)2097152, | |
MiscellaneousMathematicalSymbolsB = (long)4194304, | |
SupplementalMathematicalOperators = (long)8388608, | |
MiscellaneousSymbolsAndArrows = (long)16777216, | |
Glagolitic = (long)33554432, | |
LatinExtendedC = (long)67108864, | |
Coptic = (long)134217728, | |
GeorgianSupplement = (long)268435456, | |
Tifinagh = (long)536870912, | |
} | |
[System.FlagsAttribute] | |
public enum UpperCodeCharts | |
{ | |
None = 0, | |
DevanagariExtended = 1, | |
KayahLi = 2, | |
Rejang = 4, | |
HangulJamoExtendedA = 8, | |
Javanese = 16, | |
Cham = 32, | |
MyanmarExtendedA = 64, | |
TaiViet = 128, | |
MeeteiMayek = 256, | |
HangulSyllables = 512, | |
HangulJamoExtendedB = 1024, | |
CjkCompatibilityIdeographs = 2048, | |
AlphabeticPresentationForms = 4096, | |
ArabicPresentationFormsA = 8192, | |
VariationSelectors = 16384, | |
VerticalForms = 32768, | |
CombiningHalfMarks = 65536, | |
CjkCompatibilityForms = 131072, | |
SmallFormVariants = 262144, | |
ArabicPresentationFormsB = 524288, | |
HalfWidthAndFullWidthForms = 1048576, | |
Specials = 2097152, | |
} | |
[System.FlagsAttribute] | |
public enum UpperMidCodeCharts : long | |
{ | |
None = (long)0, | |
CyrillicExtendedA = (long)1, | |
SupplementalPunctuation = (long)2, | |
CjkRadicalsSupplement = (long)4, | |
KangxiRadicals = (long)8, | |
IdeographicDescriptionCharacters = (long)16, | |
CjkSymbolsAndPunctuation = (long)32, | |
Hiragana = (long)64, | |
Katakana = (long)128, | |
Bopomofo = (long)256, | |
HangulCompatibilityJamo = (long)512, | |
Kanbun = (long)1024, | |
BopomofoExtended = (long)2048, | |
CjkStrokes = (long)4096, | |
KatakanaPhoneticExtensions = (long)8192, | |
EnclosedCjkLettersAndMonths = (long)16384, | |
CjkCompatibility = (long)32768, | |
CjkUnifiedIdeographsExtensionA = (long)65536, | |
YijingHexagramSymbols = (long)131072, | |
CjkUnifiedIdeographs = (long)262144, | |
YiSyllables = (long)524288, | |
YiRadicals = (long)1048576, | |
Lisu = (long)2097152, | |
Vai = (long)4194304, | |
CyrillicExtendedB = (long)8388608, | |
Bamum = (long)16777216, | |
ModifierToneLetters = (long)33554432, | |
LatinExtendedD = (long)67108864, | |
SylotiNagri = (long)134217728, | |
CommonIndicNumberForms = (long)268435456, | |
Phagspa = (long)536870912, | |
Saurashtra = (long)1073741824, | |
} | |
} | |
namespace System.Web.SessionState | |
{ | |
public sealed partial class HttpSessionState : System.Collections.ICollection, System.Collections.IEnumerable | |
{ | |
internal HttpSessionState() { } | |
public int CodePage { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.SessionState.HttpSessionState Contents { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpCookieMode CookieMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsCookieless { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsNewSession { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsReadOnly { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsSynchronized { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Specialized.NameObjectCollectionBase.KeysCollection Keys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int LCID { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.SessionState.SessionStateMode Mode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string SessionID { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpStaticObjectsCollection StaticObjects { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object SyncRoot { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int Timeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Abandon() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Add(string name, object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void CopyTo(System.Array array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAll() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class HttpSessionStateContainer : System.Web.SessionState.IHttpSessionState | |
{ | |
public HttpSessionStateContainer(string id, System.Web.SessionState.ISessionStateItemCollection sessionItems, System.Web.HttpStaticObjectsCollection staticObjects, int timeout, bool newSession, System.Web.HttpCookieMode cookieMode, System.Web.SessionState.SessionStateMode mode, bool isReadonly) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int CodePage { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpCookieMode CookieMode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsAbandoned { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsCookieless { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsNewSession { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsReadOnly { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsSynchronized { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.Specialized.NameObjectCollectionBase.KeysCollection Keys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int LCID { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.SessionState.SessionStateMode Mode { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string SessionID { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.HttpStaticObjectsCollection StaticObjects { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object SyncRoot { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public int Timeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Abandon() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Add(string name, object value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void CopyTo(System.Array array, int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAll() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial interface IHttpSessionState | |
{ | |
int CodePage { get; set; } | |
System.Web.HttpCookieMode CookieMode { get; } | |
int Count { get; } | |
bool IsCookieless { get; } | |
bool IsNewSession { get; } | |
bool IsReadOnly { get; } | |
bool IsSynchronized { get; } | |
object this[int index] { get; set; } | |
object this[string name] { get; set; } | |
System.Collections.Specialized.NameObjectCollectionBase.KeysCollection Keys { get; } | |
int LCID { get; set; } | |
System.Web.SessionState.SessionStateMode Mode { get; } | |
string SessionID { get; } | |
System.Web.HttpStaticObjectsCollection StaticObjects { get; } | |
object SyncRoot { get; } | |
int Timeout { get; set; } | |
void Abandon(); | |
void Add(string name, object value); | |
void Clear(); | |
void CopyTo(System.Array array, int index); | |
System.Collections.IEnumerator GetEnumerator(); | |
void Remove(string name); | |
void RemoveAll(); | |
void RemoveAt(int index); | |
} | |
public partial interface IPartialSessionState | |
{ | |
System.Collections.Generic.IList<string> PartialSessionStateKeys { get; } | |
} | |
public partial interface IReadOnlySessionState : System.Web.SessionState.IRequiresSessionState | |
{ | |
} | |
public partial interface IRequiresSessionState | |
{ | |
} | |
public partial interface ISessionIDManager | |
{ | |
string CreateSessionID(System.Web.HttpContext context); | |
string GetSessionID(System.Web.HttpContext context); | |
void Initialize(); | |
bool InitializeRequest(System.Web.HttpContext context, bool suppressAutoDetectRedirect, out bool supportSessionIDReissue); | |
void RemoveSessionID(System.Web.HttpContext context); | |
void SaveSessionID(System.Web.HttpContext context, string id, out bool redirected, out bool cookieAdded); | |
bool Validate(string id); | |
} | |
public partial interface ISessionStateItemCollection : System.Collections.ICollection, System.Collections.IEnumerable | |
{ | |
bool Dirty { get; set; } | |
object this[int index] { get; set; } | |
object this[string name] { get; set; } | |
System.Collections.Specialized.NameObjectCollectionBase.KeysCollection Keys { get; } | |
void Clear(); | |
void Remove(string name); | |
void RemoveAt(int index); | |
} | |
public partial interface ISessionStateModule : System.Web.IHttpModule | |
{ | |
void ReleaseSessionState(System.Web.HttpContext context); | |
System.Threading.Tasks.Task ReleaseSessionStateAsync(System.Web.HttpContext context); | |
} | |
[System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] | |
public partial interface IStateRuntime | |
{ | |
void ProcessRequest(System.IntPtr tracker, int verb, string uri, int exclusive, int extraFlags, int timeout, int lockCookieExists, int lockCookie, int contentLength, System.IntPtr content); | |
void ProcessRequest(System.IntPtr tracker, int verb, string uri, int exclusive, int timeout, int lockCookieExists, int lockCookie, int contentLength, System.IntPtr content); | |
void StopProcessing(); | |
} | |
public partial class SessionIDManager : System.Web.SessionState.ISessionIDManager | |
{ | |
public SessionIDManager() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static int SessionIDMaxLength { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual string CreateSessionID(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string Decode(string id) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual string Encode(string id) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetSessionID(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Initialize() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool InitializeRequest(System.Web.HttpContext context, bool suppressAutoDetectRedirect, out bool supportSessionIDReissue) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveSessionID(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void SaveSessionID(System.Web.HttpContext context, string id, out bool redirected, out bool cookieAdded) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual bool Validate(string id) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
[System.FlagsAttribute] | |
public enum SessionStateActions | |
{ | |
None = 0, | |
InitializeItem = 1, | |
} | |
public enum SessionStateBehavior | |
{ | |
Default = 0, | |
Required = 1, | |
ReadOnly = 2, | |
Disabled = 3, | |
} | |
public sealed partial class SessionStateItemCollection : System.Collections.Specialized.NameObjectCollectionBase, System.Collections.ICollection, System.Collections.IEnumerable, System.Web.SessionState.ISessionStateItemCollection | |
{ | |
public SessionStateItemCollection() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool Dirty { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object this[int index] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object this[string name] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override System.Collections.Specialized.NameObjectCollectionBase.KeysCollection Keys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.SessionState.SessionStateItemCollection Deserialize(System.IO.BinaryReader reader) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string name) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RemoveAt(int index) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Serialize(System.IO.BinaryWriter writer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public delegate void SessionStateItemExpireCallback(string id, System.Web.SessionState.SessionStateStoreData item); | |
public enum SessionStateMode | |
{ | |
Off = 0, | |
InProc = 1, | |
StateServer = 2, | |
SQLServer = 3, | |
Custom = 4, | |
} | |
public sealed partial class SessionStateModule : System.Web.IHttpModule, System.Web.SessionState.ISessionStateModule | |
{ | |
public SessionStateModule() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public event System.EventHandler End { add { } remove { } } | |
public event System.EventHandler Start { add { } remove { } } | |
public void Dispose() { } | |
public void Init(System.Web.HttpApplication app) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void ReleaseSessionState(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Threading.Tasks.Task ReleaseSessionStateAsync(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class SessionStateStoreData | |
{ | |
public SessionStateStoreData(System.Web.SessionState.ISessionStateItemCollection sessionItems, System.Web.HttpStaticObjectsCollection staticObjects, int timeout) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual System.Web.SessionState.ISessionStateItemCollection Items { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual System.Web.HttpStaticObjectsCollection StaticObjects { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual int Timeout { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public abstract partial class SessionStateStoreProviderBase : System.Configuration.Provider.ProviderBase | |
{ | |
protected SessionStateStoreProviderBase() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract System.Web.SessionState.SessionStateStoreData CreateNewStoreData(System.Web.HttpContext context, int timeout); | |
public abstract void CreateUninitializedItem(System.Web.HttpContext context, string id, int timeout); | |
public abstract void Dispose(); | |
public abstract void EndRequest(System.Web.HttpContext context); | |
public abstract System.Web.SessionState.SessionStateStoreData GetItem(System.Web.HttpContext context, string id, out bool locked, out System.TimeSpan lockAge, out object lockId, out System.Web.SessionState.SessionStateActions actions); | |
public abstract System.Web.SessionState.SessionStateStoreData GetItemExclusive(System.Web.HttpContext context, string id, out bool locked, out System.TimeSpan lockAge, out object lockId, out System.Web.SessionState.SessionStateActions actions); | |
public abstract void InitializeRequest(System.Web.HttpContext context); | |
public abstract void ReleaseItemExclusive(System.Web.HttpContext context, string id, object lockId); | |
public abstract void RemoveItem(System.Web.HttpContext context, string id, object lockId, System.Web.SessionState.SessionStateStoreData item); | |
public abstract void ResetItemTimeout(System.Web.HttpContext context, string id); | |
public abstract void SetAndReleaseItemExclusive(System.Web.HttpContext context, string id, System.Web.SessionState.SessionStateStoreData item, object lockId, bool newItem); | |
public abstract bool SetItemExpireCallback(System.Web.SessionState.SessionStateItemExpireCallback expireCallback); | |
} | |
public static partial class SessionStateUtility | |
{ | |
public static System.Runtime.Serialization.ISurrogateSelector SerializationSurrogateSelector { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public static void AddHttpSessionStateToContext(System.Web.HttpContext context, System.Web.SessionState.IHttpSessionState container) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.SessionState.IHttpSessionState GetHttpSessionStateFromContext(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static System.Web.HttpStaticObjectsCollection GetSessionStaticObjects(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool IsSessionStateReadOnly(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static bool IsSessionStateRequired(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RaiseSessionEnd(System.Web.SessionState.IHttpSessionState session, object eventSource, System.EventArgs eventArgs) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public static void RemoveHttpSessionStateFromContext(System.Web.HttpContext context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class StateRuntime : System.Web.SessionState.IStateRuntime | |
{ | |
public StateRuntime() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void ProcessRequest(System.IntPtr tracker, int verb, string uri, int exclusive, int extraFlags, int timeout, int lockCookieExists, int lockCookie, int contentLength, System.IntPtr content) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void ProcessRequest(System.IntPtr tracker, int verb, string uri, int exclusive, int timeout, int lockCookieExists, int lockCookie, int contentLength, System.IntPtr content) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void StopProcessing() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
} | |
namespace System.Web.UI | |
{ | |
public sealed partial class AttributeCollection | |
{ | |
public AttributeCollection(System.Web.UI.StateBag bag) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public int Count { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.UI.CssStyleCollection CssStyle { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string this[string key] { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Collections.ICollection Keys { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public void Add(string key, string value) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void AddAttributes(System.Web.UI.HtmlTextWriter writer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Clear() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override bool Equals(object o) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override int GetHashCode() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Remove(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void Render(System.Web.UI.HtmlTextWriter writer) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class BaseParser | |
{ | |
public BaseParser() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class BasePartialCachingControl : System.Web.UI.Control | |
{ | |
protected BasePartialCachingControl() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Web.UI.ControlCachePolicy CachePolicy { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Caching.CacheDependency Dependency { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public override void Dispose() { } | |
protected internal override void Render(System.Web.UI.HtmlTextWriter output) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public abstract partial class BaseTemplateParser : System.Web.UI.TemplateParser | |
{ | |
protected BaseTemplateParser() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected System.Type GetReferencedType(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected internal System.Type GetUserControlType(string virtualPath) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public sealed partial class BindableTemplateBuilder : System.Web.UI.TemplateBuilder, System.Web.UI.IBindableTemplate, System.Web.UI.ITemplate | |
{ | |
public BindableTemplateBuilder() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public System.Collections.Specialized.IOrderedDictionary ExtractValues(System.Web.UI.Control container) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void OnAppendToParentBuilder(System.Web.UI.ControlBuilder parentBuilder) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public partial class BoundPropertyEntry : System.Web.UI.PropertyEntry | |
{ | |
internal BoundPropertyEntry() { } | |
public string ControlID { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Type ControlType { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string Expression { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public System.Web.Compilation.ExpressionBuilder ExpressionBuilder { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string ExpressionPrefix { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string FieldName { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public string FormatString { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool Generated { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool IsEncoded { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public object ParsedExpressionData { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool ReadOnlyProperty { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool TwoWayBound { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public bool UseSetAttribute { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public abstract partial class BuilderPropertyEntry : System.Web.UI.PropertyEntry | |
{ | |
internal BuilderPropertyEntry() { } | |
public System.Web.UI.ControlBuilder Builder { get { throw new System.PlatformNotSupportedException("NotSupported"); } set { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
} | |
public delegate System.Web.UI.Control BuildMethod(); | |
public delegate void BuildTemplateMethod(System.Web.UI.Control control); | |
public partial class ChtmlTextWriter : System.Web.UI.Html32TextWriter | |
{ | |
public ChtmlTextWriter(System.IO.TextWriter writer) : base (default(System.IO.TextWriter)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public ChtmlTextWriter(System.IO.TextWriter writer, string tabString) : base (default(System.IO.TextWriter)) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected System.Collections.Hashtable GlobalSuppressedAttributes { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected System.Collections.Hashtable RecognizedAttributes { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
protected System.Collections.Hashtable SuppressedAttributes { get { throw new System.PlatformNotSupportedException("NotSupported"); } } | |
public virtual void AddRecognizedAttribute(string elementName, string attributeName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override bool OnAttributeRender(string name, string value, System.Web.UI.HtmlTextWriterAttribute key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override bool OnStyleAttributeRender(string name, string value, System.Web.UI.HtmlTextWriterStyle key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
protected override bool OnTagRender(string name, System.Web.UI.HtmlTextWriterTag key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public virtual void RemoveRecognizedAttribute(string elementName, string attributeName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void WriteBreak() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public override void WriteEncodedText(string text) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum ClientIDMode | |
{ | |
Inherit = 0, | |
AutoID = 1, | |
Predictable = 2, | |
Static = 3, | |
} | |
public sealed partial class ClientScriptManager | |
{ | |
internal ClientScriptManager() { } | |
public string GetCallbackEventReference(string target, string argument, string clientCallback, string context, string clientErrorCallback, bool useAsync) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetCallbackEventReference(System.Web.UI.Control control, string argument, string clientCallback, string context) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetCallbackEventReference(System.Web.UI.Control control, string argument, string clientCallback, string context, bool useAsync) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetCallbackEventReference(System.Web.UI.Control control, string argument, string clientCallback, string context, string clientErrorCallback, bool useAsync) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetPostBackClientHyperlink(System.Web.UI.Control control, string argument) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetPostBackClientHyperlink(System.Web.UI.Control control, string argument, bool registerForEventValidation) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetPostBackEventReference(System.Web.UI.Control control, string argument) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetPostBackEventReference(System.Web.UI.Control control, string argument, bool registerForEventValidation) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetPostBackEventReference(System.Web.UI.PostBackOptions options) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetPostBackEventReference(System.Web.UI.PostBackOptions options, bool registerForEventValidation) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public string GetWebResourceUrl(System.Type type, string resourceName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsClientScriptBlockRegistered(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsClientScriptBlockRegistered(System.Type type, string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsClientScriptIncludeRegistered(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsClientScriptIncludeRegistered(System.Type type, string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsOnSubmitStatementRegistered(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsOnSubmitStatementRegistered(System.Type type, string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsStartupScriptRegistered(string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public bool IsStartupScriptRegistered(System.Type type, string key) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterArrayDeclaration(string arrayName, string arrayValue) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterClientScriptBlock(System.Type type, string key, string script) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterClientScriptBlock(System.Type type, string key, string script, bool addScriptTags) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterClientScriptInclude(string key, string url) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterClientScriptInclude(System.Type type, string key, string url) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterClientScriptResource(System.Type type, string resourceName) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterExpandoAttribute(string controlId, string attributeName, string attributeValue) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterExpandoAttribute(string controlId, string attributeName, string attributeValue, bool encode) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterForEventValidation(string uniqueId) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterForEventValidation(string uniqueId, string argument) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterForEventValidation(System.Web.UI.PostBackOptions options) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterHiddenField(string hiddenFieldName, string hiddenFieldInitialValue) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterOnSubmitStatement(System.Type type, string key, string script) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterStartupScript(System.Type type, string key, string script) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void RegisterStartupScript(System.Type type, string key, string script, bool addScriptTags) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void ValidateEvent(string uniqueId) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public void ValidateEvent(string uniqueId, string argument) { throw new System.PlatformNotSupportedException("NotSupported"); } | |
} | |
public enum CodeBlockType | |
{ | |
Code = 0, | |
Expression = 1, | |
DataBinding = 2, | |
EncodedExpression = 3, | |
} | |
public enum CodeConstructType | |
{ | |
CodeSnippet = 0, | |
ExpressionSnippet = 1, | |
DataBindingSnippet = 2, | |
ScriptTag = 3, | |
EncodedExpressionSnippet = 4, | |
} | |
public abstract partial class CodeStatementBuilder : System.Web.UI.ControlBuilder | |
{ | |
protected CodeStatementBuilder() { throw new System.PlatformNotSupportedException("NotSupported"); } | |
public abstract System.CodeDom.CodeStatement BuildStatement(System.CodeDom.CodeArgumentReferenceExpression writerReferenceExpression); | |
} | |
public enum CompilationMode | |
{ | |
Auto |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment