Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Net / System / Net / Mail / AttachmentCollection.cs / 1 / AttachmentCollection.cs
using System; using System.Collections.ObjectModel; namespace System.Net.Mail { ////// Summary description for AttachmentCollection. /// public sealed class AttachmentCollection : Collection, IDisposable { bool disposed = false; internal AttachmentCollection() { } public void Dispose(){ if(disposed){ return; } foreach (Attachment attachment in this) { attachment.Dispose(); } Clear(); disposed = true; } protected override void RemoveItem(int index){ if (disposed) { throw new ObjectDisposedException(this.GetType().FullName); } base.RemoveItem(index); } protected override void ClearItems(){ if (disposed) { throw new ObjectDisposedException(this.GetType().FullName); } base.ClearItems(); } protected override void SetItem(int index, Attachment item){ if (disposed) { throw new ObjectDisposedException(this.GetType().FullName); } if(item==null) { throw new ArgumentNullException("item"); } base.SetItem(index,item); } protected override void InsertItem(int index, Attachment item){ if (disposed) { throw new ObjectDisposedException(this.GetType().FullName); } if(item==null){ throw new ArgumentNullException("item"); } base.InsertItem(index,item); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Collections.ObjectModel; namespace System.Net.Mail { /// /// Summary description for AttachmentCollection. /// public sealed class AttachmentCollection : Collection, IDisposable { bool disposed = false; internal AttachmentCollection() { } public void Dispose(){ if(disposed){ return; } foreach (Attachment attachment in this) { attachment.Dispose(); } Clear(); disposed = true; } protected override void RemoveItem(int index){ if (disposed) { throw new ObjectDisposedException(this.GetType().FullName); } base.RemoveItem(index); } protected override void ClearItems(){ if (disposed) { throw new ObjectDisposedException(this.GetType().FullName); } base.ClearItems(); } protected override void SetItem(int index, Attachment item){ if (disposed) { throw new ObjectDisposedException(this.GetType().FullName); } if(item==null) { throw new ArgumentNullException("item"); } base.SetItem(index,item); } protected override void InsertItem(int index, Attachment item){ if (disposed) { throw new ObjectDisposedException(this.GetType().FullName); } if(item==null){ throw new ArgumentNullException("item"); } base.InsertItem(index,item); } } } // 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
- Visitors.cs
- CompilationLock.cs
- Permission.cs
- OleDbErrorCollection.cs
- SecurityAlgorithmSuite.cs
- ItemCollection.cs
- SchemaNames.cs
- Currency.cs
- SmtpNetworkElement.cs
- DesignerVerbCollection.cs
- IsolatedStorageFileStream.cs
- ClickablePoint.cs
- StandardToolWindows.cs
- DataServiceRequestOfT.cs
- FileAuthorizationModule.cs
- MediaElementAutomationPeer.cs
- AbstractDataSvcMapFileLoader.cs
- Binding.cs
- CrossContextChannel.cs
- MulticastIPAddressInformationCollection.cs
- HashCodeCombiner.cs
- ProgressBarHighlightConverter.cs
- RegexCompilationInfo.cs
- DragDrop.cs
- ObjectTypeMapping.cs
- ParserContext.cs
- FixedSOMSemanticBox.cs
- ClientEventManager.cs
- XmlSerializerAssemblyAttribute.cs
- SrgsElementList.cs
- EntityDataSourceChangingEventArgs.cs
- DbConnectionPool.cs
- XmlSchemaRedefine.cs
- FixedBufferAttribute.cs
- InputLanguageProfileNotifySink.cs
- ActivityCollectionMarkupSerializer.cs
- CompoundFileStorageReference.cs
- UrlSyndicationContent.cs
- FormDocumentDesigner.cs
- EventHandlersDesigner.cs
- AuthenticationManager.cs
- StdValidatorsAndConverters.cs
- MaskedTextProvider.cs
- DbConnectionStringCommon.cs
- BufferedStream.cs
- _RequestCacheProtocol.cs
- SortQuery.cs
- ProcessModelSection.cs
- RadioButtonFlatAdapter.cs
- X509InitiatorCertificateClientElement.cs
- MatcherBuilder.cs
- Utility.cs
- SqlConnectionFactory.cs
- ReadOnlyDictionary.cs
- SQLResource.cs
- DataTableMapping.cs
- PermissionSetTriple.cs
- Pair.cs
- SpecialFolderEnumConverter.cs
- HttpContextServiceHost.cs
- CompilerCollection.cs
- StoreItemCollection.Loader.cs
- EnumValAlphaComparer.cs
- SqlBulkCopyColumnMappingCollection.cs
- CssTextWriter.cs
- XmlReaderDelegator.cs
- InternalUserCancelledException.cs
- Addressing.cs
- SmtpDigestAuthenticationModule.cs
- PathTooLongException.cs
- SQLDateTimeStorage.cs
- TextEvent.cs
- SrgsSemanticInterpretationTag.cs
- UriSection.cs
- DataRecord.cs
- ProxyAttribute.cs
- SerializationSectionGroup.cs
- EntityDescriptor.cs
- ControlPersister.cs
- CanonicalFontFamilyReference.cs
- Compiler.cs
- WorkflowValidationFailedException.cs
- SeekableReadStream.cs
- MaskedTextBoxDesigner.cs
- TypeUnloadedException.cs
- ExtractedStateEntry.cs
- HelpEvent.cs
- ObjectSecurity.cs
- HelpInfo.cs
- AuthenticationManager.cs
- Accessible.cs
- StylusTip.cs
- base64Transforms.cs
- WhitespaceRule.cs
- WorkflowOwnershipException.cs
- TakeQueryOptionExpression.cs
- OperationCanceledException.cs
- HttpContext.cs
- ManagedWndProcTracker.cs
- OleDbTransaction.cs