Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / Configuration / UrlAuthFailedErrorFormatter.cs / 3 / UrlAuthFailedErrorFormatter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * AuthorizationConfigHandler class * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.Configuration { using System.Runtime.Serialization; using System.Web.Util; using System.Collections; using System.Collections.Specialized; using System.IO; using System.Security.Principal; using System.Xml; using System.Security.Cryptography; using System.Configuration; using System.Globalization; using System.Web.Management; ///////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////// internal class UrlAuthFailedErrorFormatter : ErrorFormatter { private StringCollection _adaptiveMiscContent = new StringCollection(); internal UrlAuthFailedErrorFormatter() { } internal /*public*/ static string GetErrorText() { return GetErrorText(HttpContext.Current); } internal static string GetErrorText(HttpContext context) { bool dontShowSensitiveInfo = context.IsCustomErrorEnabled; return (new UrlAuthFailedErrorFormatter()).GetErrorMessage(context, dontShowSensitiveInfo); } protected override string ErrorTitle { get { return SR.GetString(SR.Assess_Denied_Title);} // "Access Denied } protected override string Description { get { return SR.GetString(SR.Assess_Denied_Description2); //"An error occurred while accessing the resources required to serve this request. This typically happens when the web server is not configured to give you access to the requested URL."; } } protected override string MiscSectionTitle { get { return SR.GetString(SR.Assess_Denied_Section_Title2); //return "Error message 401.2"; } } protected override string MiscSectionContent { get { // string miscContent = HttpUtility.FormatPlainTextAsHtml(SR.GetString(SR.Assess_Denied_Misc_Content2)); AdaptiveMiscContent.Add(miscContent); return miscContent; //return "Access denied due to the web server's configuration. Ask the web server's administrator for help."; } } protected override string ColoredSquareTitle { get { return null;} } protected override string ColoredSquareContent { get { return null;} } protected override StringCollection AdaptiveMiscContent { get { return _adaptiveMiscContent;} } protected override bool ShowSourceFileInfo { get { return false;} } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * AuthorizationConfigHandler class * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.Configuration { using System.Runtime.Serialization; using System.Web.Util; using System.Collections; using System.Collections.Specialized; using System.IO; using System.Security.Principal; using System.Xml; using System.Security.Cryptography; using System.Configuration; using System.Globalization; using System.Web.Management; ///////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////// internal class UrlAuthFailedErrorFormatter : ErrorFormatter { private StringCollection _adaptiveMiscContent = new StringCollection(); internal UrlAuthFailedErrorFormatter() { } internal /*public*/ static string GetErrorText() { return GetErrorText(HttpContext.Current); } internal static string GetErrorText(HttpContext context) { bool dontShowSensitiveInfo = context.IsCustomErrorEnabled; return (new UrlAuthFailedErrorFormatter()).GetErrorMessage(context, dontShowSensitiveInfo); } protected override string ErrorTitle { get { return SR.GetString(SR.Assess_Denied_Title);} // "Access Denied } protected override string Description { get { return SR.GetString(SR.Assess_Denied_Description2); //"An error occurred while accessing the resources required to serve this request. This typically happens when the web server is not configured to give you access to the requested URL."; } } protected override string MiscSectionTitle { get { return SR.GetString(SR.Assess_Denied_Section_Title2); //return "Error message 401.2"; } } protected override string MiscSectionContent { get { // string miscContent = HttpUtility.FormatPlainTextAsHtml(SR.GetString(SR.Assess_Denied_Misc_Content2)); AdaptiveMiscContent.Add(miscContent); return miscContent; //return "Access denied due to the web server's configuration. Ask the web server's administrator for help."; } } protected override string ColoredSquareTitle { get { return null;} } protected override string ColoredSquareContent { get { return null;} } protected override StringCollection AdaptiveMiscContent { get { return _adaptiveMiscContent;} } protected override bool ShowSourceFileInfo { get { return false;} } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PathFigureCollection.cs
- HttpApplicationFactory.cs
- RowParagraph.cs
- FramingEncoders.cs
- HorizontalAlignConverter.cs
- TemplateBuilder.cs
- ModelChangedEventArgsImpl.cs
- SiteMapNodeItem.cs
- IgnoreSectionHandler.cs
- RoutedEventConverter.cs
- InsufficientMemoryException.cs
- ContractHandle.cs
- Set.cs
- OperatingSystem.cs
- PageTheme.cs
- BindValidator.cs
- ToolStripPanelCell.cs
- StringUtil.cs
- ToolStripManager.cs
- GridViewUpdateEventArgs.cs
- DataBindingList.cs
- EntityDesignerBuildProvider.cs
- VisualTransition.cs
- WebPartCollection.cs
- TextTreeUndo.cs
- RawKeyboardInputReport.cs
- HttpFileCollection.cs
- HiddenFieldPageStatePersister.cs
- SqlNodeTypeOperators.cs
- FileNotFoundException.cs
- RelatedPropertyManager.cs
- OutputCacheProfile.cs
- SecureStringHasher.cs
- SqlAggregateChecker.cs
- ZipFileInfoCollection.cs
- COM2PropertyPageUITypeConverter.cs
- WebContext.cs
- ClosureBinding.cs
- HtmlImage.cs
- AssemblyName.cs
- ExpressionDumper.cs
- SHA1Managed.cs
- TraceContext.cs
- SqlBooleanMismatchVisitor.cs
- WebPartEditVerb.cs
- NamespaceQuery.cs
- VariantWrapper.cs
- ConfigXmlText.cs
- HierarchicalDataBoundControlAdapter.cs
- DefinitionBase.cs
- ServicePointManagerElement.cs
- CodePageEncoding.cs
- HMACSHA512.cs
- CodeSubDirectoriesCollection.cs
- PeerNearMe.cs
- WpfKnownMember.cs
- ToolStripComboBox.cs
- PreloadHost.cs
- SQLDouble.cs
- RegisteredHiddenField.cs
- DataGridViewHeaderCell.cs
- DiagnosticTraceSource.cs
- SqlConnectionPoolProviderInfo.cs
- Point3DConverter.cs
- DataSourceControlBuilder.cs
- FixedNode.cs
- SoapClientProtocol.cs
- HandlerFactoryCache.cs
- ApplicationGesture.cs
- RC2.cs
- FastEncoderWindow.cs
- FontFaceLayoutInfo.cs
- ResXResourceWriter.cs
- FlowNode.cs
- TextFormatterHost.cs
- WebServiceData.cs
- IdentityReference.cs
- ViewgenContext.cs
- IntranetCredentialPolicy.cs
- UnSafeCharBuffer.cs
- DbProviderServices.cs
- ServiceActivationException.cs
- Point3DIndependentAnimationStorage.cs
- SqlCacheDependencySection.cs
- ArrangedElementCollection.cs
- MachineKeySection.cs
- MetadataHelper.cs
- ResourcesBuildProvider.cs
- CurrentChangingEventManager.cs
- BuildManager.cs
- OuterGlowBitmapEffect.cs
- Msec.cs
- ToolStripItemDesigner.cs
- ListView.cs
- WebPartCloseVerb.cs
- OLEDB_Enum.cs
- GeometryValueSerializer.cs
- AlternateViewCollection.cs
- PrePostDescendentsWalker.cs
- EventLogConfiguration.cs