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
- AssemblyHash.cs
- ControlCachePolicy.cs
- MaskedTextBox.cs
- BaseCodeDomTreeGenerator.cs
- TextParagraphCache.cs
- WebScriptServiceHostFactory.cs
- GrammarBuilderWildcard.cs
- sqlser.cs
- MembershipValidatePasswordEventArgs.cs
- FixedSOMPageConstructor.cs
- SizeConverter.cs
- CookieProtection.cs
- XamlTreeBuilder.cs
- Matrix3DConverter.cs
- WriterOutput.cs
- __Error.cs
- FontWeights.cs
- ToolStripItemTextRenderEventArgs.cs
- BamlBinaryReader.cs
- xml.cs
- ListViewInsertionMark.cs
- AnimationLayer.cs
- ToolStripPanelCell.cs
- RenderTargetBitmap.cs
- DataBoundControlAdapter.cs
- ToolStripContentPanel.cs
- DuplicateContext.cs
- DispatcherHookEventArgs.cs
- WindowsRichEdit.cs
- MouseButtonEventArgs.cs
- FontFamilyValueSerializer.cs
- SiteMap.cs
- ToolStripSeparator.cs
- FontSourceCollection.cs
- WebPartEditorOkVerb.cs
- DoubleAnimation.cs
- NamespaceExpr.cs
- XpsStructure.cs
- TableLayoutPanel.cs
- DynamicArgumentDialog.cs
- StateChangeEvent.cs
- ExpressionBindings.cs
- UserControlCodeDomTreeGenerator.cs
- ConnectionManagementElementCollection.cs
- SecurityAttributeGenerationHelper.cs
- TrackingConditionCollection.cs
- MissingFieldException.cs
- BufferedWebEventProvider.cs
- AbstractSvcMapFileLoader.cs
- MethodBuilder.cs
- ReferentialConstraint.cs
- SrgsRuleRef.cs
- SequenceDesigner.cs
- sortedlist.cs
- Int32Rect.cs
- StringReader.cs
- BinaryFormatter.cs
- TypeBuilder.cs
- DbCommandTree.cs
- EmptyStringExpandableObjectConverter.cs
- RoleManagerEventArgs.cs
- EditingScopeUndoUnit.cs
- SourceElementsCollection.cs
- DataBoundControlHelper.cs
- XmlDownloadManager.cs
- UpdateCommand.cs
- DefaultProxySection.cs
- DependencyObjectPropertyDescriptor.cs
- TreeWalkHelper.cs
- EnumerableCollectionView.cs
- QilGenerator.cs
- SiteMapPath.cs
- DateTimeConstantAttribute.cs
- entityreference_tresulttype.cs
- RuntimeConfigLKG.cs
- SortDescription.cs
- IndexedGlyphRun.cs
- CqlQuery.cs
- PriorityQueue.cs
- FakeModelPropertyImpl.cs
- CodeDOMProvider.cs
- ApplicationDirectoryMembershipCondition.cs
- CodeLinePragma.cs
- BaseTemplateCodeDomTreeGenerator.cs
- X509ServiceCertificateAuthenticationElement.cs
- LineInfo.cs
- WindowsFormsEditorServiceHelper.cs
- AttachedAnnotationChangedEventArgs.cs
- TransactionsSectionGroup.cs
- CodeTypeReferenceCollection.cs
- _NativeSSPI.cs
- SerializationInfoEnumerator.cs
- RoleGroup.cs
- BlockExpression.cs
- DiagnosticTraceSource.cs
- TextSchema.cs
- XamlRtfConverter.cs
- BitmapImage.cs
- InternalConfigHost.cs
- UnsafeNativeMethods.cs