Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Net / System / Net / Mail / SmtpFailedRecipientsException.cs / 1 / SmtpFailedRecipientsException.cs
using System; using System.Collections; using System.Runtime.Serialization; using System.Security.Permissions; namespace System.Net.Mail { ////// Summary description for SmtpFailedRecipientsException. /// [Serializable] public class SmtpFailedRecipientsException : SmtpFailedRecipientException, ISerializable { SmtpFailedRecipientException[] innerExceptions; // FxCop public SmtpFailedRecipientsException() { innerExceptions = new SmtpFailedRecipientException[0]; } public SmtpFailedRecipientsException(string message) : base(message) { innerExceptions = new SmtpFailedRecipientException[0]; } public SmtpFailedRecipientsException(string message, Exception innerException) : base(message, innerException) { SmtpFailedRecipientException smtpException = innerException as SmtpFailedRecipientException; this.innerExceptions = smtpException == null ? new SmtpFailedRecipientException[0] : new SmtpFailedRecipientException[] { smtpException }; } protected SmtpFailedRecipientsException(SerializationInfo info, StreamingContext context) : base(info, context) { innerExceptions = (SmtpFailedRecipientException[]) info.GetValue("innerExceptions", typeof(SmtpFailedRecipientException[])); } public SmtpFailedRecipientsException(string message, SmtpFailedRecipientException[] innerExceptions) : base(message, innerExceptions != null && innerExceptions.Length > 0 ? innerExceptions[0].FailedRecipient : null, innerExceptions != null && innerExceptions.Length > 0 ? innerExceptions[0] : null) { if (innerExceptions == null) { throw new ArgumentNullException("innerExceptions"); } this.innerExceptions = innerExceptions == null ? new SmtpFailedRecipientException[0] : innerExceptions; } internal SmtpFailedRecipientsException(ArrayList innerExceptions, bool allFailed) : base(allFailed ? SR.GetString(SR.SmtpAllRecipientsFailed) : SR.GetString(SR.SmtpRecipientFailed), innerExceptions != null && innerExceptions.Count > 0 ? ((SmtpFailedRecipientException) innerExceptions[0]).FailedRecipient : null, innerExceptions != null && innerExceptions.Count > 0 ? (SmtpFailedRecipientException) innerExceptions[0] : null) { if (innerExceptions == null) { throw new ArgumentNullException("innerExceptions"); } this.innerExceptions = new SmtpFailedRecipientException[innerExceptions.Count]; int i = 0; foreach(SmtpFailedRecipientException e in innerExceptions) { this.innerExceptions[i++]=e; } } public SmtpFailedRecipientException[] InnerExceptions { get { return innerExceptions; } } // // ISerializable // ///[SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter)] void ISerializable.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) { GetObjectData(serializationInfo, streamingContext); } // // FxCop: provide some way for derived classes to access GetObjectData even if the derived class // explicitly re-inherits ISerializable. // [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter)] public override void GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) { base.GetObjectData(serializationInfo, streamingContext); serializationInfo.AddValue("innerExceptions", innerExceptions, typeof(SmtpFailedRecipientException[])); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FixedPageStructure.cs
- SqlReferenceCollection.cs
- DataSourceCacheDurationConverter.cs
- BuilderInfo.cs
- PieceDirectory.cs
- ObjectSet.cs
- ListViewGroup.cs
- WindowsScroll.cs
- ButtonBaseAutomationPeer.cs
- Help.cs
- UInt64.cs
- CompModSwitches.cs
- ScrollPattern.cs
- Stack.cs
- ExpandCollapsePattern.cs
- Trace.cs
- EntityDataSourceReferenceGroup.cs
- Decorator.cs
- X509Utils.cs
- SignatureDescription.cs
- FigureHelper.cs
- WebPartUserCapability.cs
- RenderContext.cs
- Rectangle.cs
- _AutoWebProxyScriptEngine.cs
- SchemaElementDecl.cs
- StrongNamePublicKeyBlob.cs
- FontFamilyIdentifier.cs
- CalendarKeyboardHelper.cs
- CodeStatement.cs
- ParameterCollection.cs
- TableLayout.cs
- DataGridViewBindingCompleteEventArgs.cs
- Rect3DConverter.cs
- FileNotFoundException.cs
- WebMessageBodyStyleHelper.cs
- RuleDefinitions.cs
- PriorityBindingExpression.cs
- Tokenizer.cs
- MiniConstructorInfo.cs
- _ListenerAsyncResult.cs
- NumericPagerField.cs
- wmiprovider.cs
- ToolbarAUtomationPeer.cs
- ExpandableObjectConverter.cs
- KnownBoxes.cs
- Binding.cs
- DynamicILGenerator.cs
- ByteArrayHelperWithString.cs
- ImageList.cs
- exports.cs
- ElementProxy.cs
- RequestResizeEvent.cs
- TryCatchDesigner.xaml.cs
- FontEditor.cs
- GroupByQueryOperator.cs
- ActivityDesignerLayoutSerializers.cs
- MembershipPasswordException.cs
- ClonableStack.cs
- InstanceLockTracking.cs
- SharedStatics.cs
- InvokeMemberBinder.cs
- NotImplementedException.cs
- MemberInfoSerializationHolder.cs
- TreeView.cs
- DragDrop.cs
- PeerName.cs
- InterleavedZipPartStream.cs
- WsatServiceCertificate.cs
- ListSortDescription.cs
- HtmlAnchor.cs
- XmlSchemaElement.cs
- DynamicValueConverter.cs
- ScriptingSectionGroup.cs
- XmlComment.cs
- SafeLibraryHandle.cs
- MsmqIntegrationSecurityMode.cs
- AsyncDataRequest.cs
- XmlReader.cs
- StyleHelper.cs
- NamedPipeHostedTransportConfiguration.cs
- ClickablePoint.cs
- CompositeFontInfo.cs
- SHA256Managed.cs
- TemplatePagerField.cs
- InfiniteIntConverter.cs
- PerformanceCounterCategory.cs
- RoutingService.cs
- IdentifierCollection.cs
- PermissionListSet.cs
- ControlParameter.cs
- XomlDesignerLoader.cs
- WindowsButton.cs
- IncrementalReadDecoders.cs
- Thread.cs
- FactoryRecord.cs
- SectionXmlInfo.cs
- DataGridTableCollection.cs
- StyleSheet.cs
- embossbitmapeffect.cs