Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Handlers / TraceHandlerErrorFormatter.cs / 1 / TraceHandlerErrorFormatter.cs
namespace System.Web.Handlers { using System.IO; using System.Web.Util; using System.Web; using System.Collections; using System.Collections.Specialized; internal class TraceHandlerErrorFormatter : ErrorFormatter { bool _isRemote; internal TraceHandlerErrorFormatter(bool isRemote) { _isRemote = isRemote; } protected override string ErrorTitle { get { return SR.GetString(SR.Trace_Error_Title);} } protected override string Description { get { if(_isRemote) return SR.GetString(SR.Trace_Error_LocalOnly_Description); else return HttpUtility.HtmlEncode(SR.GetString(SR.Trace_Error_Enabled_Description)); } } protected override string MiscSectionTitle { get { return null; } } protected override string MiscSectionContent { get { return null; } } protected override string ColoredSquareTitle { get { string detailsTitle = SR.GetString(SR.Generic_Err_Details_Title); AdaptiveMiscContent.Add(detailsTitle); return detailsTitle; } } protected override string ColoredSquareDescription { get { string description; if(_isRemote) description = HttpUtility.HtmlEncode(SR.GetString(SR.Trace_Error_LocalOnly_Details_Desc)); else description = HttpUtility.HtmlEncode(SR.GetString(SR.Trace_Error_Enabled_Details_Desc)); AdaptiveMiscContent.Add(description); return description; } } protected override string ColoredSquareContent { get { string content; if(_isRemote) content = HttpUtility.HtmlEncode(SR.GetString(SR.Trace_Error_LocalOnly_Details_Sample)); else content = HttpUtility.HtmlEncode(SR.GetString(SR.Trace_Error_Enabled_Details_Sample)); return WrapWithLeftToRightTextFormatIfNeeded(content); } } protected override bool ShowSourceFileInfo { get { return false;} } internal override bool CanBeShownToAllUsers { get { return true;} } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HandlerBase.cs
- ReturnValue.cs
- ScriptRegistrationManager.cs
- CheckBoxFlatAdapter.cs
- DataContractSerializerOperationBehavior.cs
- OpenFileDialog.cs
- RawAppCommandInputReport.cs
- LocalServiceSecuritySettings.cs
- GPStream.cs
- CounterSampleCalculator.cs
- HttpCachePolicy.cs
- RightsManagementPermission.cs
- ObjectDisposedException.cs
- RectAnimation.cs
- HttpSocketManager.cs
- BufferedGraphics.cs
- BufferedOutputAsyncStream.cs
- CodePageUtils.cs
- ObjectList.cs
- DocumentGridPage.cs
- SatelliteContractVersionAttribute.cs
- StringBuilder.cs
- Crypto.cs
- SmiMetaDataProperty.cs
- JoinGraph.cs
- CollectionDataContract.cs
- DrawingImage.cs
- DefaultTraceListener.cs
- ISAPIWorkerRequest.cs
- TableCellCollection.cs
- QilScopedVisitor.cs
- PageSetupDialog.cs
- PropertyGeneratedEventArgs.cs
- TypeInfo.cs
- PrimitiveType.cs
- ProcessHost.cs
- MemberAccessException.cs
- RowTypeElement.cs
- GotoExpression.cs
- EntityDesignerBuildProvider.cs
- ServiceDescriptionSerializer.cs
- Label.cs
- PropertyConverter.cs
- TextEffect.cs
- GridViewUpdatedEventArgs.cs
- Publisher.cs
- CharacterHit.cs
- XmlSchemaRedefine.cs
- SqlConnectionFactory.cs
- ComEventsSink.cs
- StackSpiller.Temps.cs
- SynchronizationContext.cs
- TreeNodeCollectionEditor.cs
- ColumnWidthChangingEvent.cs
- RoleBoolean.cs
- HtmlFormWrapper.cs
- ToolboxItem.cs
- RequiredAttributeAttribute.cs
- XmlSchemaProviderAttribute.cs
- ConnectionDemuxer.cs
- HandlerWithFactory.cs
- ContextDataSource.cs
- RegistrySecurity.cs
- TypeForwardedToAttribute.cs
- WebPartConnection.cs
- AttachmentCollection.cs
- WriteFileContext.cs
- RadioButtonList.cs
- MissingFieldException.cs
- WebServiceClientProxyGenerator.cs
- SqlBuilder.cs
- HandlerBase.cs
- CollectionView.cs
- ListenerUnsafeNativeMethods.cs
- CleanUpVirtualizedItemEventArgs.cs
- WebMessageEncodingElement.cs
- FastEncoderStatics.cs
- NumberEdit.cs
- Menu.cs
- DbConnectionPoolGroup.cs
- DispatcherFrame.cs
- UserControlCodeDomTreeGenerator.cs
- TabControlCancelEvent.cs
- BookmarkScopeHandle.cs
- CompiledRegexRunnerFactory.cs
- NamespaceCollection.cs
- MissingMethodException.cs
- TargetFrameworkUtil.cs
- StrokeSerializer.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- XmlLangPropertyAttribute.cs
- UserPersonalizationStateInfo.cs
- DbConnectionClosed.cs
- WeakReference.cs
- TextParagraphProperties.cs
- ToolStripRenderEventArgs.cs
- ITreeGenerator.cs
- ResourceWriter.cs
- MenuItemBindingCollection.cs
- IISUnsafeMethods.cs