Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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[])); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. 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[])); } } } // 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
- WebPartZoneBase.cs
- HTMLTextWriter.cs
- EpmSyndicationContentDeSerializer.cs
- CallSiteHelpers.cs
- SystemIPAddressInformation.cs
- CustomSignedXml.cs
- SR.cs
- LiteralControl.cs
- IdnElement.cs
- UnsafeNativeMethods.cs
- Aggregates.cs
- FrameworkElementAutomationPeer.cs
- DataGridViewCellStateChangedEventArgs.cs
- SessionEndingCancelEventArgs.cs
- PassportIdentity.cs
- MediaContext.cs
- DescendentsWalker.cs
- JoinGraph.cs
- AuthenticationModulesSection.cs
- DTCTransactionManager.cs
- ToolBarButton.cs
- DynamicQueryStringParameter.cs
- OracleParameterBinding.cs
- EncryptedType.cs
- ComponentDesigner.cs
- Journaling.cs
- DataGridAutoFormat.cs
- CryptoApi.cs
- SoapProcessingBehavior.cs
- LogManagementAsyncResult.cs
- XmlLanguageConverter.cs
- JsonMessageEncoderFactory.cs
- MyContact.cs
- TypeLibConverter.cs
- TrackingStringDictionary.cs
- EntityDataSourceSelectingEventArgs.cs
- SqlDataAdapter.cs
- DesignerDataColumn.cs
- JulianCalendar.cs
- CombinedGeometry.cs
- TextServicesDisplayAttributePropertyRanges.cs
- HashSet.cs
- Schema.cs
- NumberFunctions.cs
- PassportAuthenticationEventArgs.cs
- ExtendedTransformFactory.cs
- controlskin.cs
- DbParameterCollectionHelper.cs
- BitmapCodecInfoInternal.cs
- ActiveXContainer.cs
- PeerPresenceInfo.cs
- FlowPosition.cs
- SiteMapHierarchicalDataSourceView.cs
- StateItem.cs
- HttpAsyncResult.cs
- QilValidationVisitor.cs
- DetailsViewPagerRow.cs
- AppearanceEditorPart.cs
- CommandHelpers.cs
- AsyncContentLoadedEventArgs.cs
- SqlLiftIndependentRowExpressions.cs
- categoryentry.cs
- DateTimeConstantAttribute.cs
- FontFamily.cs
- SmiGettersStream.cs
- SQLInt16.cs
- IpcClientManager.cs
- TableParaClient.cs
- ResourcePart.cs
- ECDiffieHellmanCng.cs
- ResourceDescriptionAttribute.cs
- SettingsPropertyIsReadOnlyException.cs
- Exceptions.cs
- DataGridLinkButton.cs
- JournalEntryListConverter.cs
- PackageDigitalSignatureManager.cs
- ItemCollection.cs
- XmlNamespaceManager.cs
- StrongTypingException.cs
- SelectedDatesCollection.cs
- dsa.cs
- UrlMapping.cs
- QilName.cs
- WindowsIdentity.cs
- Quad.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- Utilities.cs
- PolicyLevel.cs
- ClientUtils.cs
- ColorPalette.cs
- DataTableReaderListener.cs
- CustomValidator.cs
- SystemTcpStatistics.cs
- BuildManagerHost.cs
- XamlSerializerUtil.cs
- WebResourceAttribute.cs
- ResourceDisplayNameAttribute.cs
- AutomationAttributeInfo.cs
- InitiatorSessionSymmetricTransportSecurityProtocol.cs
- RawStylusInputCustomData.cs