Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / Management / WebEventTraceProvider.cs / 1 / WebEventTraceProvider.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Management { using System.Configuration; using System.Configuration.Provider; using System.Collections.Specialized; using System.Web.Util; using System.Security.Permissions; //////////// // Events //////////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class TraceWebEventProvider : WebEventProvider, IInternalWebEventProvider { internal TraceWebEventProvider() { } public override void Initialize(string name, NameValueCollection config) { Debug.Trace("TraceWebEventProvider", "Initializing: name=" + name); base.Initialize(name, config); ProviderUtil.CheckUnrecognizedAttributes(config, name); } public override void ProcessEvent(WebBaseEvent eventRaised) { if (eventRaised is WebBaseErrorEvent) { System.Diagnostics.Trace.TraceError(eventRaised.ToString()); } else { System.Diagnostics.Trace.TraceInformation(eventRaised.ToString()); } } public override void Flush() { } public override void Shutdown() { } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Management { using System.Configuration; using System.Configuration.Provider; using System.Collections.Specialized; using System.Web.Util; using System.Security.Permissions; //////////// // Events //////////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class TraceWebEventProvider : WebEventProvider, IInternalWebEventProvider { internal TraceWebEventProvider() { } public override void Initialize(string name, NameValueCollection config) { Debug.Trace("TraceWebEventProvider", "Initializing: name=" + name); base.Initialize(name, config); ProviderUtil.CheckUnrecognizedAttributes(config, name); } public override void ProcessEvent(WebBaseEvent eventRaised) { if (eventRaised is WebBaseErrorEvent) { System.Diagnostics.Trace.TraceError(eventRaised.ToString()); } else { System.Diagnostics.Trace.TraceInformation(eventRaised.ToString()); } } public override void Flush() { } public override void Shutdown() { } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- cookiecollection.cs
- InputScopeNameConverter.cs
- ClientCredentials.cs
- ApplicationTrust.cs
- GeometryModel3D.cs
- AppLevelCompilationSectionCache.cs
- Calendar.cs
- SqlNodeTypeOperators.cs
- DataTableExtensions.cs
- BufferBuilder.cs
- CreatingCookieEventArgs.cs
- TextTreeRootTextBlock.cs
- ProviderMetadata.cs
- PermissionSet.cs
- ReflectPropertyDescriptor.cs
- BulletedList.cs
- SerializerDescriptor.cs
- WebConfigurationHostFileChange.cs
- DisplayMemberTemplateSelector.cs
- PenThread.cs
- HighlightVisual.cs
- ListView.cs
- PrintPreviewGraphics.cs
- NameValueConfigurationElement.cs
- SelectionUIService.cs
- connectionpool.cs
- AutomationPatternInfo.cs
- ProfileBuildProvider.cs
- MarshalByRefObject.cs
- XmlEntity.cs
- RepeaterCommandEventArgs.cs
- RowType.cs
- QilReference.cs
- FlowLayoutSettings.cs
- DefaultExpression.cs
- ProxyWebPart.cs
- ConstructorNeedsTagAttribute.cs
- TabRenderer.cs
- DataGridViewRowPrePaintEventArgs.cs
- TraceContextRecord.cs
- Invariant.cs
- HttpCacheParams.cs
- _ConnectOverlappedAsyncResult.cs
- ProxyWebPartManager.cs
- WebPartManagerDesigner.cs
- DataGridItemCollection.cs
- WebServiceResponseDesigner.cs
- PolicyStatement.cs
- Point3DCollection.cs
- HttpRuntime.cs
- MenuItem.cs
- XmlTextEncoder.cs
- SqlMethodAttribute.cs
- _SingleItemRequestCache.cs
- TextDecorationUnitValidation.cs
- InputProviderSite.cs
- SchemaObjectWriter.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- ImportCatalogPart.cs
- WebServiceMethodData.cs
- MultiView.cs
- IsolatedStorageFile.cs
- ItemCheckedEvent.cs
- KeyTimeConverter.cs
- EntityTypeEmitter.cs
- ValidatorCompatibilityHelper.cs
- WizardPanelChangingEventArgs.cs
- TransformGroup.cs
- ExpressionPrefixAttribute.cs
- DataListComponentEditor.cs
- RadioButtonPopupAdapter.cs
- ViewPort3D.cs
- _ConnectOverlappedAsyncResult.cs
- ServerTooBusyException.cs
- ScrollBarAutomationPeer.cs
- DataBoundControlHelper.cs
- ShutDownListener.cs
- TypeUtil.cs
- WebPartChrome.cs
- OleStrCAMarshaler.cs
- LocalizationComments.cs
- XmlSchemaChoice.cs
- RemoteWebConfigurationHostServer.cs
- Constraint.cs
- TypeConverterAttribute.cs
- TranslateTransform3D.cs
- XmlChoiceIdentifierAttribute.cs
- SiteOfOriginContainer.cs
- XmlObjectSerializerWriteContextComplex.cs
- SchemaImporterExtension.cs
- SectionUpdates.cs
- SymLanguageVendor.cs
- ListViewItem.cs
- HighlightComponent.cs
- SizeAnimation.cs
- XsltContext.cs
- SimpleFieldTemplateFactory.cs
- formatter.cs
- CriticalHandle.cs
- SelectionEditingBehavior.cs