Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / SendMailErrorEventArgs.cs / 1 / SendMailErrorEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System.Web.Security; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class SendMailErrorEventArgs : EventArgs { private Exception _exception; private bool _handled = false; public SendMailErrorEventArgs(Exception e) { _exception = e; } ////// Gets or sets the exception which caused the failure /// public Exception Exception { get { return _exception; } set { _exception = value; } } ////// Gets or sets whether the error has been handled /// public bool Handled { get { return _handled; } set { _handled = value; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Compiler.cs
- XmlCodeExporter.cs
- OleDbTransaction.cs
- XmlTextReaderImplHelpers.cs
- ClusterSafeNativeMethods.cs
- MarkupCompiler.cs
- DataRowView.cs
- TerminatorSinks.cs
- EntityDataSourceDesigner.cs
- TokenizerHelper.cs
- ToolStripCollectionEditor.cs
- EventProviderBase.cs
- MimeParameter.cs
- HybridDictionary.cs
- XmlSchemaImport.cs
- ShapeTypeface.cs
- TableProviderWrapper.cs
- LoginCancelEventArgs.cs
- MetaTableHelper.cs
- ToolStripTextBox.cs
- CacheRequest.cs
- PolyQuadraticBezierSegment.cs
- webeventbuffer.cs
- StateChangeEvent.cs
- NestedContainer.cs
- InvalidFilterCriteriaException.cs
- RIPEMD160Managed.cs
- Size3DValueSerializer.cs
- XmlSchemas.cs
- AbandonedMutexException.cs
- CodeIndexerExpression.cs
- StatusBarItem.cs
- StreamUpdate.cs
- ComponentResourceKeyConverter.cs
- DiagnosticTrace.cs
- FrameAutomationPeer.cs
- DependencyObjectType.cs
- ValuePattern.cs
- MultilineStringConverter.cs
- DataServiceKeyAttribute.cs
- OleDbErrorCollection.cs
- XmlComment.cs
- BoundingRectTracker.cs
- ProcessHostMapPath.cs
- SafeEventLogWriteHandle.cs
- HttpListenerContext.cs
- DocumentPageHost.cs
- GridViewColumnHeader.cs
- VisualBasicHelper.cs
- FileSystemEventArgs.cs
- propertytag.cs
- Operator.cs
- TdsParserSessionPool.cs
- TextLineBreak.cs
- RMPublishingDialog.cs
- NumericExpr.cs
- OutOfProcStateClientManager.cs
- arc.cs
- NotSupportedException.cs
- MSHTMLHost.cs
- OdbcInfoMessageEvent.cs
- CardSpacePolicyElement.cs
- SqlFileStream.cs
- CodeArrayIndexerExpression.cs
- Image.cs
- GridToolTip.cs
- AnimationClock.cs
- ExcCanonicalXml.cs
- IgnoreFlushAndCloseStream.cs
- ImportContext.cs
- BufferedGraphicsContext.cs
- ApplicationException.cs
- ServiceHttpModule.cs
- WindowShowOrOpenTracker.cs
- CommonEndpointBehaviorElement.cs
- HtmlInputControl.cs
- CollectionChangedEventManager.cs
- BitmapFrameDecode.cs
- RowParagraph.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- Graphics.cs
- DoubleLink.cs
- FormViewModeEventArgs.cs
- PeerConnector.cs
- CollectionBuilder.cs
- webclient.cs
- TextHidden.cs
- AnnotationResourceChangedEventArgs.cs
- JsonWriterDelegator.cs
- CapabilitiesUse.cs
- UnsafeNativeMethods.cs
- SHA1.cs
- WebZone.cs
- Registry.cs
- DefaultBinder.cs
- InkPresenter.cs
- PointAnimationUsingKeyFrames.cs
- SchemaRegistration.cs
- StringAnimationUsingKeyFrames.cs
- FormViewPageEventArgs.cs