Code:
/ DotNET / DotNET / 8.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
- PasswordRecoveryAutoFormat.cs
- Keyboard.cs
- Point3DIndependentAnimationStorage.cs
- DataServiceHostFactory.cs
- CalendarDateChangedEventArgs.cs
- EmptyEnumerator.cs
- ItemType.cs
- InternalConfigHost.cs
- XmlSchemaObjectCollection.cs
- CellPartitioner.cs
- HttpStreams.cs
- TreeViewCancelEvent.cs
- ContentElement.cs
- StrokeRenderer.cs
- ClientProxyGenerator.cs
- ComponentEvent.cs
- XmlLanguageConverter.cs
- TypeSystem.cs
- SHA1.cs
- DoubleAnimationUsingKeyFrames.cs
- QilInvokeEarlyBound.cs
- KeyGestureValueSerializer.cs
- XmlSchemaObjectCollection.cs
- Simplifier.cs
- ToolStripItemRenderEventArgs.cs
- SessionStateModule.cs
- MatrixCamera.cs
- LinkArea.cs
- ListBase.cs
- SchemaEntity.cs
- WorkflowViewStateService.cs
- TimeSpan.cs
- Visual3D.cs
- QilPatternVisitor.cs
- ListQueryResults.cs
- NotCondition.cs
- ServiceThrottlingBehavior.cs
- ping.cs
- VerbConverter.cs
- Accessible.cs
- HTMLTagNameToTypeMapper.cs
- BreadCrumbTextConverter.cs
- TextEditorTyping.cs
- SQlBooleanStorage.cs
- XmlDataImplementation.cs
- x509utils.cs
- DynamicResourceExtension.cs
- SecuritySessionSecurityTokenAuthenticator.cs
- DiscoveryDocumentSearchPattern.cs
- PermissionListSet.cs
- EntityDataSourceChangedEventArgs.cs
- CheckedListBox.cs
- ExitEventArgs.cs
- Stack.cs
- RangeValuePattern.cs
- SqlMethods.cs
- MultiTrigger.cs
- DataIdProcessor.cs
- AsyncPostBackErrorEventArgs.cs
- WorkflowViewManager.cs
- RadioButtonAutomationPeer.cs
- ListenerServiceInstallComponent.cs
- InputLanguageSource.cs
- WebScriptMetadataMessageEncodingBindingElement.cs
- DateTimeParse.cs
- XappLauncher.cs
- ArrayConverter.cs
- HttpApplicationFactory.cs
- DBConcurrencyException.cs
- CryptoHelper.cs
- ManagedWndProcTracker.cs
- MediaPlayerState.cs
- XsltContext.cs
- RepeaterCommandEventArgs.cs
- Glyph.cs
- ResourceExpression.cs
- ExpressionValueEditor.cs
- _FixedSizeReader.cs
- GridViewColumn.cs
- Canvas.cs
- ChannelManager.cs
- DetailsViewPagerRow.cs
- BaseUriHelper.cs
- ExpressionHelper.cs
- WebPartsPersonalization.cs
- XmlILConstructAnalyzer.cs
- SqlDataSourceFilteringEventArgs.cs
- BooleanExpr.cs
- ClrPerspective.cs
- ListItemCollection.cs
- Attributes.cs
- returneventsaver.cs
- UnknownBitmapEncoder.cs
- NotImplementedException.cs
- DatePickerDateValidationErrorEventArgs.cs
- SqlStream.cs
- GridPattern.cs
- RtfControls.cs
- ServiceModelSecurityTokenRequirement.cs
- SqlCommand.cs