Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- ProfessionalColorTable.cs
- TemplateControl.cs
- MachineKeySection.cs
- MenuItem.cs
- ClockGroup.cs
- Binding.cs
- XPathDocumentIterator.cs
- DataConnectionHelper.cs
- SerializationUtility.cs
- AuthenticateEventArgs.cs
- DateTimeOffsetAdapter.cs
- LinkedResource.cs
- SecurityKeyIdentifierClause.cs
- ToolStripPanelRow.cs
- Expression.cs
- OdbcConnectionString.cs
- DesignerLoader.cs
- ValidationErrorCollection.cs
- StickyNoteAnnotations.cs
- OleDbMetaDataFactory.cs
- CellIdBoolean.cs
- DSGeneratorProblem.cs
- Panel.cs
- TypeDelegator.cs
- Bitmap.cs
- DateRangeEvent.cs
- RTLAwareMessageBox.cs
- ObjectAnimationBase.cs
- DataStreamFromComStream.cs
- MenuEventArgs.cs
- WinEventWrap.cs
- WebReferencesBuildProvider.cs
- XmlLanguageConverter.cs
- RecognitionResult.cs
- ThreadExceptionDialog.cs
- SymmetricKey.cs
- ComplexObject.cs
- Span.cs
- PropertyFilter.cs
- RequestChannelBinder.cs
- BitmapFrame.cs
- PasswordTextNavigator.cs
- StreamSecurityUpgradeProvider.cs
- PersonalizableTypeEntry.cs
- TrimSurroundingWhitespaceAttribute.cs
- GridLengthConverter.cs
- MouseActionValueSerializer.cs
- ImportContext.cs
- Imaging.cs
- WindowsGraphics.cs
- InputScopeAttribute.cs
- TraceListeners.cs
- diagnosticsswitches.cs
- PersonalizationAdministration.cs
- ApplicationGesture.cs
- BinaryReader.cs
- TraceSwitch.cs
- StorageEntityContainerMapping.cs
- TextEndOfSegment.cs
- DropSource.cs
- ConditionValidator.cs
- ThicknessAnimationBase.cs
- MediaContext.cs
- DispatchWrapper.cs
- GeometryValueSerializer.cs
- DataGridViewControlCollection.cs
- RIPEMD160Managed.cs
- SqlSupersetValidator.cs
- Update.cs
- ActivityBuilderHelper.cs
- NavigationWindow.cs
- Pointer.cs
- StringStorage.cs
- ClientCultureInfo.cs
- WindowsUpDown.cs
- EnumBuilder.cs
- UInt64.cs
- TextTreeTextElementNode.cs
- DataColumnSelectionConverter.cs
- CreatingCookieEventArgs.cs
- FormViewUpdatedEventArgs.cs
- CodeVariableReferenceExpression.cs
- DemultiplexingClientMessageFormatter.cs
- AdornerHitTestResult.cs
- FolderLevelBuildProvider.cs
- XmlSchemaSimpleContent.cs
- WindowsStartMenu.cs
- NativeRecognizer.cs
- SmiContextFactory.cs
- RadioButtonList.cs
- ErrorFormatterPage.cs
- SmtpNetworkElement.cs
- TrustSection.cs
- ButtonField.cs
- _FtpDataStream.cs
- JoinSymbol.cs
- TrustManagerMoreInformation.cs
- ErrorWebPart.cs
- Canvas.cs
- TypeResolvingOptions.cs