Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RelationshipManager.cs
- FormViewAutoFormat.cs
- RuntimeWrappedException.cs
- XPathBinder.cs
- RepeaterItem.cs
- MLangCodePageEncoding.cs
- PriorityRange.cs
- ProviderCollection.cs
- FilterException.cs
- SimpleWebHandlerParser.cs
- XmlSerializerObjectSerializer.cs
- SkinBuilder.cs
- ColorAnimation.cs
- VisualStyleInformation.cs
- WmpBitmapDecoder.cs
- SiteMap.cs
- SafeNativeMethodsMilCoreApi.cs
- CultureData.cs
- DataGridTable.cs
- FormViewRow.cs
- CommandHelper.cs
- Mapping.cs
- ItemList.cs
- XmlElementAttributes.cs
- TypeElementCollection.cs
- OAVariantLib.cs
- PlaceHolder.cs
- GCHandleCookieTable.cs
- DrawingGroupDrawingContext.cs
- ControlCollection.cs
- RotateTransform.cs
- AccessDataSource.cs
- OAVariantLib.cs
- WinEventTracker.cs
- ObjectSet.cs
- WindowsStatic.cs
- PointCollectionConverter.cs
- XXXInfos.cs
- AttachedPropertyBrowsableAttribute.cs
- InternalCache.cs
- odbcmetadatacolumnnames.cs
- DBConcurrencyException.cs
- Error.cs
- DataGridHeadersVisibilityToVisibilityConverter.cs
- SystemThemeKey.cs
- KeySpline.cs
- OutputWindow.cs
- ExpandCollapseProviderWrapper.cs
- InputScope.cs
- SafeEventHandle.cs
- OutOfMemoryException.cs
- Emitter.cs
- WebPartDeleteVerb.cs
- SurrogateSelector.cs
- ReceiveDesigner.xaml.cs
- DataGridViewComboBoxCell.cs
- ComplexLine.cs
- XslTransformFileEditor.cs
- EventRouteFactory.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- Executor.cs
- SystemTcpConnection.cs
- KeysConverter.cs
- RegexTree.cs
- DesignerActionUI.cs
- StyleCollection.cs
- SyndicationSerializer.cs
- SeparatorAutomationPeer.cs
- XPathNodeInfoAtom.cs
- storepermission.cs
- DataTablePropertyDescriptor.cs
- SelectionRange.cs
- SqlBuffer.cs
- XmlSchemaAttributeGroupRef.cs
- XPathConvert.cs
- RichTextBoxAutomationPeer.cs
- PriorityChain.cs
- WebBrowserBase.cs
- ActivitySurrogateSelector.cs
- WebPartMovingEventArgs.cs
- SimpleBitVector32.cs
- AssociationEndMember.cs
- HTMLTagNameToTypeMapper.cs
- SchemaMapping.cs
- CacheSection.cs
- EncodingDataItem.cs
- SqlCacheDependencyDatabaseCollection.cs
- HitTestParameters3D.cs
- RoutedUICommand.cs
- InstanceCreationEditor.cs
- SessionConnectionReader.cs
- ResourcePool.cs
- SynchronizationFilter.cs
- ListSourceHelper.cs
- ObjectListFieldCollection.cs
- TemplateBindingExpressionConverter.cs
- Control.cs
- RangeBase.cs
- CodeIndexerExpression.cs
- ElementNotEnabledException.cs