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
- RuntimeWrappedException.cs
- SimpleTextLine.cs
- Manipulation.cs
- ADConnectionHelper.cs
- EntityStoreSchemaGenerator.cs
- RequestQueue.cs
- Identity.cs
- EntityEntry.cs
- OleDbWrapper.cs
- TransactionFilter.cs
- InfoCardSymmetricCrypto.cs
- InputMethod.cs
- InputLanguageProfileNotifySink.cs
- CompiledIdentityConstraint.cs
- PageRequestManager.cs
- QuaternionIndependentAnimationStorage.cs
- Types.cs
- NameValueSectionHandler.cs
- DesignTimeVisibleAttribute.cs
- DateRangeEvent.cs
- Ops.cs
- InstanceDataCollection.cs
- ModelPropertyImpl.cs
- CatalogPartCollection.cs
- DataSvcMapFileSerializer.cs
- EntityViewContainer.cs
- LexicalChunk.cs
- ListBoxAutomationPeer.cs
- HandledMouseEvent.cs
- XmlSchemaObjectCollection.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- SqlSelectClauseBuilder.cs
- RelationshipEndCollection.cs
- StoreConnection.cs
- DynamicResourceExtensionConverter.cs
- TrackingRecordPreFilter.cs
- IDReferencePropertyAttribute.cs
- SchemaSetCompiler.cs
- DataStreams.cs
- PolicyManager.cs
- MinMaxParagraphWidth.cs
- BitmapEffectInputConnector.cs
- ObjectSet.cs
- QilLiteral.cs
- RayHitTestParameters.cs
- TextAnchor.cs
- AnimationLayer.cs
- LoginViewDesigner.cs
- BrushMappingModeValidation.cs
- webbrowsersite.cs
- TrackBarRenderer.cs
- SecurityPermission.cs
- TemplateInstanceAttribute.cs
- BindingGroup.cs
- FixedSOMLineCollection.cs
- QilStrConcatenator.cs
- ControlBuilder.cs
- GeneralTransform3DGroup.cs
- ScrollBarRenderer.cs
- WhitespaceRuleReader.cs
- OrderedHashRepartitionEnumerator.cs
- EntityCommandExecutionException.cs
- ImageListUtils.cs
- DesignerEventService.cs
- StringAttributeCollection.cs
- UTF32Encoding.cs
- GlyphInfoList.cs
- AttachmentService.cs
- Select.cs
- SelectedGridItemChangedEvent.cs
- DataGridViewHeaderCell.cs
- OwnerDrawPropertyBag.cs
- DebugControllerThread.cs
- ContextProperty.cs
- SchemaMerger.cs
- MethodImplAttribute.cs
- UICuesEvent.cs
- DictionaryEntry.cs
- IndexerNameAttribute.cs
- TdsParser.cs
- Accessors.cs
- VirtualizedItemPattern.cs
- UpdateCommand.cs
- UnicodeEncoding.cs
- TabRenderer.cs
- TcpProcessProtocolHandler.cs
- DataComponentNameHandler.cs
- SqlCacheDependencySection.cs
- AbstractSvcMapFileLoader.cs
- NotImplementedException.cs
- EventLogTraceListener.cs
- DrawToolTipEventArgs.cs
- CultureSpecificStringDictionary.cs
- KeyValuePairs.cs
- GridItemPatternIdentifiers.cs
- ProgressBarRenderer.cs
- AttributeCollection.cs
- ConnectionStringsExpressionEditor.cs
- ClaimTypeRequirement.cs
- TextCollapsingProperties.cs