Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ExtensionDataReader.cs
- DoubleUtil.cs
- HttpResponse.cs
- HostedTcpTransportManager.cs
- DecoderBestFitFallback.cs
- iisPickupDirectory.cs
- AnimationStorage.cs
- AuthorizationRule.cs
- safemediahandle.cs
- XpsFontSerializationService.cs
- ObservableCollection.cs
- XmlWriter.cs
- PermissionSetEnumerator.cs
- ProtocolsSection.cs
- DockProviderWrapper.cs
- CommandHelper.cs
- TextProperties.cs
- XmlSerializerAssemblyAttribute.cs
- AnnotationResourceChangedEventArgs.cs
- DataGridViewCellPaintingEventArgs.cs
- TemplateParser.cs
- GPPOINTF.cs
- EventMap.cs
- XmlTextReaderImpl.cs
- MemoryMappedFile.cs
- SSmlParser.cs
- XmlCharCheckingReader.cs
- ObjectSpanRewriter.cs
- MetadataPropertyvalue.cs
- Win32MouseDevice.cs
- AssemblyBuilder.cs
- ViewLoader.cs
- ReadOnlyDictionary.cs
- RequestTimeoutManager.cs
- TextPenaltyModule.cs
- RowUpdatedEventArgs.cs
- CountdownEvent.cs
- HttpModuleAction.cs
- TdsRecordBufferSetter.cs
- StringWriter.cs
- WsatAdminException.cs
- DebugHandleTracker.cs
- WmlObjectListAdapter.cs
- CompiledRegexRunnerFactory.cs
- _AutoWebProxyScriptEngine.cs
- EnumUnknown.cs
- IPEndPointCollection.cs
- NativeCppClassAttribute.cs
- XmlSchemaInfo.cs
- DateTimeFormat.cs
- SyndicationSerializer.cs
- LayoutTableCell.cs
- AxisAngleRotation3D.cs
- TextSchema.cs
- PtsCache.cs
- TransformationRules.cs
- IxmlLineInfo.cs
- TextParentUndoUnit.cs
- _SSPIWrapper.cs
- FormsAuthentication.cs
- DrawListViewColumnHeaderEventArgs.cs
- DateTimeValueSerializerContext.cs
- CustomErrorsSectionWrapper.cs
- DefaultBindingPropertyAttribute.cs
- ProfileSettings.cs
- DatePicker.cs
- KeyTime.cs
- ConcurrentDictionary.cs
- XmlSignatureManifest.cs
- HttpMethodAttribute.cs
- DriveInfo.cs
- PowerEase.cs
- XD.cs
- Brush.cs
- InvokeMemberBinder.cs
- Color.cs
- RectAnimationClockResource.cs
- Missing.cs
- SynchronizingStream.cs
- StylusShape.cs
- InvalidOperationException.cs
- MemoryFailPoint.cs
- Int32Animation.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- ParserContext.cs
- RelativeSource.cs
- ContentFilePart.cs
- UIAgentRequest.cs
- ColorBlend.cs
- SimpleExpression.cs
- SpellerHighlightLayer.cs
- SecurityContext.cs
- Identity.cs
- ResXFileRef.cs
- ConfigurationCollectionAttribute.cs
- ThreadAttributes.cs
- IRCollection.cs
- TransactionContextManager.cs
- UTF8Encoding.cs
- HierarchicalDataTemplate.cs