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
- NegatedCellConstant.cs
- KeyEvent.cs
- BamlRecordReader.cs
- AtlasWeb.Designer.cs
- TextEffect.cs
- ProfileSection.cs
- HttpHeaderCollection.cs
- AuthenticationService.cs
- CounterSampleCalculator.cs
- ImageDrawing.cs
- ControlBuilder.cs
- DependencyPropertyConverter.cs
- Listbox.cs
- AbsoluteQuery.cs
- XsdBuilder.cs
- MulticastNotSupportedException.cs
- COMException.cs
- AspCompat.cs
- SoundPlayer.cs
- CompilationRelaxations.cs
- RegexCapture.cs
- PointCollection.cs
- SqlNodeAnnotations.cs
- TablePatternIdentifiers.cs
- CacheSection.cs
- RotateTransform3D.cs
- DbMetaDataFactory.cs
- StorageFunctionMapping.cs
- DBConcurrencyException.cs
- WebPartZone.cs
- EditorPartCollection.cs
- CustomAttributeSerializer.cs
- SmiEventStream.cs
- GCHandleCookieTable.cs
- TogglePattern.cs
- _TransmitFileOverlappedAsyncResult.cs
- TransformCryptoHandle.cs
- CheckBoxFlatAdapter.cs
- DiscreteKeyFrames.cs
- DigitShape.cs
- CardSpaceShim.cs
- panel.cs
- LineSegment.cs
- MachineSettingsSection.cs
- CrossSiteScriptingValidation.cs
- AuthorizationSection.cs
- WebPartActionVerb.cs
- InternalControlCollection.cs
- storepermissionattribute.cs
- RequestBringIntoViewEventArgs.cs
- LicFileLicenseProvider.cs
- GACMembershipCondition.cs
- SortKey.cs
- ProfileGroupSettingsCollection.cs
- ConversionValidationRule.cs
- AnonymousIdentificationModule.cs
- DataRecordInternal.cs
- DES.cs
- BitmapImage.cs
- ExpressionEditorAttribute.cs
- HtmlTitle.cs
- CustomValidator.cs
- DropSource.cs
- OpacityConverter.cs
- TypeUtil.cs
- SafeEventLogReadHandle.cs
- LayoutEngine.cs
- SqlNode.cs
- FreeFormDesigner.cs
- MetadataSource.cs
- _BaseOverlappedAsyncResult.cs
- FakeModelPropertyImpl.cs
- NetworkInformationException.cs
- MarkupCompilePass2.cs
- WebPartDisplayModeCancelEventArgs.cs
- BamlBinaryWriter.cs
- Model3D.cs
- RightsManagementEncryptionTransform.cs
- LayoutTable.cs
- PageAsyncTaskManager.cs
- WebPartAuthorizationEventArgs.cs
- ElementMarkupObject.cs
- CrossAppDomainChannel.cs
- SystemIPInterfaceProperties.cs
- DEREncoding.cs
- Message.cs
- TextEndOfSegment.cs
- XsdSchemaFileEditor.cs
- PersonalizableTypeEntry.cs
- CodeDomComponentSerializationService.cs
- metadatamappinghashervisitor.cs
- PackWebRequest.cs
- TextParaLineResult.cs
- ScriptResourceInfo.cs
- LogEntryUtils.cs
- WaitForChangedResult.cs
- RemotingSurrogateSelector.cs
- TextTreeInsertUndoUnit.cs
- CodeNamespace.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs