Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Net / System / Net / Configuration / SmtpSpecifiedPickupDirectoryElement.cs / 1 / SmtpSpecifiedPickupDirectoryElement.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Configuration { using System; using System.Configuration; using System.Net; using System.Reflection; using System.Security.Permissions; public sealed class SmtpSpecifiedPickupDirectoryElement : ConfigurationElement { public SmtpSpecifiedPickupDirectoryElement() { this.properties.Add(this.pickupDirectoryLocation); } protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } [ConfigurationProperty(ConfigurationStrings.PickupDirectoryLocation)] public string PickupDirectoryLocation { get { return (string)this[this.pickupDirectoryLocation]; } set { this[this.pickupDirectoryLocation] = value; } } // ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty pickupDirectoryLocation = new ConfigurationProperty(ConfigurationStrings.PickupDirectoryLocation, typeof(string), null, ConfigurationPropertyOptions.None); } internal sealed class SmtpSpecifiedPickupDirectoryElementInternal { internal SmtpSpecifiedPickupDirectoryElementInternal(SmtpSpecifiedPickupDirectoryElement element) { this.pickupDirectoryLocation = element.PickupDirectoryLocation; } internal string PickupDirectoryLocation { get { return this.pickupDirectoryLocation; } } string pickupDirectoryLocation; } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TileBrush.cs
- TimeZoneNotFoundException.cs
- IteratorFilter.cs
- Canvas.cs
- ProviderConnectionPointCollection.cs
- ParenthesizePropertyNameAttribute.cs
- CodeCommentStatementCollection.cs
- CodeSubDirectoriesCollection.cs
- FormViewInsertedEventArgs.cs
- GridLength.cs
- ScriptIgnoreAttribute.cs
- DiscriminatorMap.cs
- RijndaelCryptoServiceProvider.cs
- PrePostDescendentsWalker.cs
- Page.cs
- ReadOnlyDictionary.cs
- BigInt.cs
- ArraySet.cs
- XmlImplementation.cs
- TypeSystem.cs
- ArrangedElement.cs
- WindowsStatusBar.cs
- ListBox.cs
- PeerSecurityHelpers.cs
- IItemContainerGenerator.cs
- GridViewSortEventArgs.cs
- ConfigurationValidatorBase.cs
- CompareValidator.cs
- assertwrapper.cs
- PrePrepareMethodAttribute.cs
- InvokeBase.cs
- ItemCheckedEvent.cs
- TextElementEditingBehaviorAttribute.cs
- XmlDictionaryReaderQuotas.cs
- FormatException.cs
- ToolStripOverflowButton.cs
- CompositionAdorner.cs
- LinqDataSourceView.cs
- MenuBase.cs
- OleDbFactory.cs
- EntityCodeGenerator.cs
- ScalarType.cs
- Pair.cs
- AxHost.cs
- DecimalConstantAttribute.cs
- MemberExpression.cs
- WpfKnownMember.cs
- LinkArea.cs
- IndentTextWriter.cs
- FontUnitConverter.cs
- BitHelper.cs
- MD5.cs
- CookielessHelper.cs
- DataTemplateKey.cs
- RoleService.cs
- WindowProviderWrapper.cs
- MSG.cs
- EventArgs.cs
- DataQuery.cs
- ToolStripGripRenderEventArgs.cs
- MenuAutomationPeer.cs
- MimePart.cs
- SimplePropertyEntry.cs
- ContentWrapperAttribute.cs
- WeakReference.cs
- DynamicObject.cs
- XmlWrappingWriter.cs
- WorkflowIdleElement.cs
- LockedAssemblyCache.cs
- StorageAssociationSetMapping.cs
- PathData.cs
- SiteMapProvider.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- ClientBuildManager.cs
- PixelFormats.cs
- Clause.cs
- ListViewContainer.cs
- UnmanagedBitmapWrapper.cs
- DataFormats.cs
- WmlControlAdapter.cs
- FrameworkElement.cs
- Set.cs
- UnauthorizedAccessException.cs
- SqlError.cs
- CustomWebEventKey.cs
- FontSourceCollection.cs
- UpDownBase.cs
- GridViewRow.cs
- DetailsViewModeEventArgs.cs
- SpellerError.cs
- ColorConvertedBitmap.cs
- FullTextBreakpoint.cs
- TreeWalker.cs
- TextEndOfParagraph.cs
- OleDbWrapper.cs
- ProfilePropertySettingsCollection.cs
- Path.cs
- TextEncodedRawTextWriter.cs
- _ConnectOverlappedAsyncResult.cs
- CodeTryCatchFinallyStatement.cs