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
- SQLSingleStorage.cs
- EventArgs.cs
- ObjectDataSource.cs
- NullableDecimalSumAggregationOperator.cs
- WorkItem.cs
- ProviderException.cs
- HandleCollector.cs
- ThreadWorkerController.cs
- EncoderFallback.cs
- LocalServiceSecuritySettingsElement.cs
- GiveFeedbackEventArgs.cs
- DataObjectPastingEventArgs.cs
- Help.cs
- GradientStopCollection.cs
- QuotedPairReader.cs
- VoiceChangeEventArgs.cs
- DeferredTextReference.cs
- ScrollChangedEventArgs.cs
- IisTraceWebEventProvider.cs
- XPathConvert.cs
- HttpDebugHandler.cs
- FontStretch.cs
- DataKey.cs
- ProjectedSlot.cs
- PrinterResolution.cs
- ProcessHostServerConfig.cs
- EventMappingSettings.cs
- FileUtil.cs
- GradientStop.cs
- KnownTypesProvider.cs
- DataObjectMethodAttribute.cs
- MissingManifestResourceException.cs
- DocumentViewer.cs
- WorkflowMessageEventArgs.cs
- Parser.cs
- CodeObject.cs
- XmlSerializerVersionAttribute.cs
- isolationinterop.cs
- DataTrigger.cs
- SqlProcedureAttribute.cs
- TextEditorTyping.cs
- IISUnsafeMethods.cs
- MissingMethodException.cs
- ClonableStack.cs
- CreateUserWizardStep.cs
- Identity.cs
- XmlSchemaExternal.cs
- SinglePhaseEnlistment.cs
- DataServiceHost.cs
- ManagementEventWatcher.cs
- ResourceExpression.cs
- IgnoreSectionHandler.cs
- OperatingSystem.cs
- AliasGenerator.cs
- DetailsViewDesigner.cs
- ExpressionReplacer.cs
- HMACRIPEMD160.cs
- GeometryValueSerializer.cs
- MoveSizeWinEventHandler.cs
- RegisteredDisposeScript.cs
- ViewGenerator.cs
- XmlDataProvider.cs
- ComboBox.cs
- _UriSyntax.cs
- NativeMethods.cs
- IndependentlyAnimatedPropertyMetadata.cs
- ValidatorCompatibilityHelper.cs
- TextEditorParagraphs.cs
- ScrollableControl.cs
- AsyncStreamReader.cs
- DummyDataSource.cs
- InputLanguage.cs
- DashStyle.cs
- SqlFunctions.cs
- AccessDataSourceDesigner.cs
- AddIn.cs
- _ChunkParse.cs
- ExpressionVisitor.cs
- UInt16Storage.cs
- TextElementEditingBehaviorAttribute.cs
- ReadOnlyTernaryTree.cs
- RoleServiceManager.cs
- PersonalizationStateInfoCollection.cs
- UnsupportedPolicyOptionsException.cs
- ServiceBusyException.cs
- util.cs
- ExpressionBuilderContext.cs
- WebConfigurationHost.cs
- OrderPreservingSpoolingTask.cs
- ParallelTimeline.cs
- ErrorWrapper.cs
- HostVisual.cs
- SqlCacheDependencyDatabase.cs
- SettingsContext.cs
- ConfigXmlAttribute.cs
- GridViewPageEventArgs.cs
- SerializableAttribute.cs
- ObjectQuery_EntitySqlExtensions.cs
- BindingFormattingDialog.cs
- Socket.cs