Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Mail / SmtpFailedRecipientsException.cs / 1305376 / SmtpFailedRecipientsException.cs
using System; using System.Collections; using System.Diagnostics.CodeAnalysis; 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 // ///[SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase", Justification = "System.dll is still using pre-v4 security model and needs this demand")] [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.Diagnostics.CodeAnalysis; 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 // ///[SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase", Justification = "System.dll is still using pre-v4 security model and needs this demand")] [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
- TransformerInfo.cs
- XmlDataCollection.cs
- HtmlToClrEventProxy.cs
- ToolboxComponentsCreatingEventArgs.cs
- ValueTypeFixupInfo.cs
- CommonRemoteMemoryBlock.cs
- ThreadSafeList.cs
- COMException.cs
- ReturnEventArgs.cs
- PrimitiveSchema.cs
- HasCopySemanticsAttribute.cs
- TypeToken.cs
- FlowDocumentPage.cs
- AssemblyCache.cs
- NativeMethods.cs
- PhysicalFontFamily.cs
- UInt64Converter.cs
- LineGeometry.cs
- Freezable.cs
- EncoderBestFitFallback.cs
- QilChoice.cs
- SdlChannelSink.cs
- Win32SafeHandles.cs
- DispatchChannelSink.cs
- PatternMatcher.cs
- DesignerTransaction.cs
- ContentType.cs
- ThreadExceptionDialog.cs
- BitSet.cs
- LinkDesigner.cs
- IItemContainerGenerator.cs
- PrintPreviewDialog.cs
- Adorner.cs
- mediaeventshelper.cs
- MediaEntryAttribute.cs
- ListenerElementsCollection.cs
- NumericExpr.cs
- Transactions.cs
- DateBoldEvent.cs
- ComPlusTypeValidator.cs
- Point.cs
- Errors.cs
- GlyphsSerializer.cs
- XmlSchemaSimpleContentRestriction.cs
- RangeExpression.cs
- RoleGroup.cs
- Type.cs
- HostingEnvironmentSection.cs
- FileLoadException.cs
- DiffuseMaterial.cs
- DesignerLoader.cs
- StylusDownEventArgs.cs
- filewebresponse.cs
- DisableDpiAwarenessAttribute.cs
- ClonableStack.cs
- SqlCacheDependencyDatabaseCollection.cs
- CompiledQuery.cs
- ConnectionProviderAttribute.cs
- ActivityInterfaces.cs
- PagesSection.cs
- IisTraceListener.cs
- EdmType.cs
- ExecutionPropertyManager.cs
- BookmarkScopeHandle.cs
- XmlReflectionImporter.cs
- DateTimeOffsetStorage.cs
- FrugalList.cs
- SelfIssuedAuthProofToken.cs
- CodeMemberMethod.cs
- DataListGeneralPage.cs
- Panel.cs
- RestHandler.cs
- BordersPage.cs
- ProfileGroupSettings.cs
- HandlerWithFactory.cs
- LinkDescriptor.cs
- WebPartDisplayModeCancelEventArgs.cs
- IdleTimeoutMonitor.cs
- CompilerState.cs
- EdmItemError.cs
- JoinSymbol.cs
- FileDialogCustomPlacesCollection.cs
- TraceRecord.cs
- AdCreatedEventArgs.cs
- AttributeTable.cs
- IPGlobalProperties.cs
- Line.cs
- BamlTreeUpdater.cs
- OutputCacheSettingsSection.cs
- hebrewshape.cs
- NamespaceList.cs
- XmlEnumAttribute.cs
- TypeConverterAttribute.cs
- SchemaCollectionCompiler.cs
- DecoderReplacementFallback.cs
- _ContextAwareResult.cs
- ReversePositionQuery.cs
- DataObjectAttribute.cs
- Int32.cs
- ComEventsMethod.cs