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
- SectionInformation.cs
- StreamGeometryContext.cs
- Int16Animation.cs
- Calendar.cs
- WinFormsSecurity.cs
- RealizationContext.cs
- BuildDependencySet.cs
- BuildResultCache.cs
- SqlConnection.cs
- ThrowHelper.cs
- StringUtil.cs
- BufferAllocator.cs
- SQLBytesStorage.cs
- GetIsBrowserClientRequest.cs
- RuleSettingsCollection.cs
- XPathNavigatorKeyComparer.cs
- XmlLangPropertyAttribute.cs
- Encoder.cs
- WindowsScrollBar.cs
- RelativeSource.cs
- Vector3D.cs
- SettingsProviderCollection.cs
- DynamicMethod.cs
- HttpStreamXmlDictionaryWriter.cs
- Msec.cs
- FloaterBaseParaClient.cs
- ClearCollection.cs
- FormattedTextSymbols.cs
- ActivityDesigner.cs
- RelationshipWrapper.cs
- XmlIterators.cs
- XPathNavigatorKeyComparer.cs
- RectangleHotSpot.cs
- AddInPipelineAttributes.cs
- ConnectionInterfaceCollection.cs
- CellParagraph.cs
- XPathBinder.cs
- StorageSetMapping.cs
- XamlRtfConverter.cs
- SatelliteContractVersionAttribute.cs
- OrderedDictionaryStateHelper.cs
- PropertyValue.cs
- dtdvalidator.cs
- ArraySegment.cs
- FixedSOMImage.cs
- DataGridViewTextBoxColumn.cs
- QueryCursorEventArgs.cs
- DataError.cs
- PermissionSetEnumerator.cs
- SqlWebEventProvider.cs
- CustomSignedXml.cs
- AuthenticatedStream.cs
- PropertyInformation.cs
- MediaEntryAttribute.cs
- XomlDesignerLoader.cs
- CharStorage.cs
- DefaultSettingsSection.cs
- Clock.cs
- TdsParserSafeHandles.cs
- CodeMemberMethod.cs
- RemoteWebConfigurationHost.cs
- SQLMoney.cs
- SchemaContext.cs
- SiteMapNode.cs
- login.cs
- TypeForwardedToAttribute.cs
- KnownBoxes.cs
- BaseDataList.cs
- AssertSection.cs
- XmlSchemaAny.cs
- PageBuildProvider.cs
- Odbc32.cs
- SrgsGrammar.cs
- State.cs
- AutomationTextAttribute.cs
- SystemInfo.cs
- Transform.cs
- CodePageEncoding.cs
- MemberInitExpression.cs
- CalendarItem.cs
- GridViewRowCollection.cs
- MenuItem.cs
- LogAppendAsyncResult.cs
- LocatorPart.cs
- LinqDataSourceHelper.cs
- Config.cs
- ResourceExpressionBuilder.cs
- ImageButton.cs
- RotationValidation.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- WebRequestModuleElementCollection.cs
- FlowNode.cs
- CompositionAdorner.cs
- DataGridViewColumnHeaderCell.cs
- SchemaDeclBase.cs
- TextMetrics.cs
- CodeTypeMemberCollection.cs
- SessionStateSection.cs
- MenuCommands.cs
- TraceLevelStore.cs