Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Configuration / SmtpSpecifiedPickupDirectoryElement.cs / 1305376 / 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; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SafeHandle.cs
- HostingPreferredMapPath.cs
- MatrixTransform3D.cs
- StatementContext.cs
- Win32.cs
- ThreadAttributes.cs
- CodeStatementCollection.cs
- BitmapCodecInfoInternal.cs
- MenuAdapter.cs
- SqlDataSourceSelectingEventArgs.cs
- Geometry.cs
- PersistenceTypeAttribute.cs
- MDIControlStrip.cs
- HashHelper.cs
- StickyNoteHelper.cs
- AttributeEmitter.cs
- WebFormsRootDesigner.cs
- DataGridViewCellStyleChangedEventArgs.cs
- XmlnsDictionary.cs
- LocationSectionRecord.cs
- SplashScreen.cs
- SessionPageStatePersister.cs
- XPathDescendantIterator.cs
- QilSortKey.cs
- TypeElement.cs
- xmlglyphRunInfo.cs
- WebRequestModulesSection.cs
- TextPointer.cs
- URLString.cs
- EdmFunction.cs
- Compiler.cs
- WindowsScroll.cs
- ThreadStartException.cs
- IsolationInterop.cs
- BindableAttribute.cs
- HostingPreferredMapPath.cs
- SqlExpressionNullability.cs
- ViewGenerator.cs
- VirtualPath.cs
- ObjectDisposedException.cs
- coordinatorfactory.cs
- SettingsPropertyValueCollection.cs
- DotNetATv1WindowsLogEntryDeserializer.cs
- AttributeCollection.cs
- TemplatedWizardStep.cs
- _Events.cs
- GcHandle.cs
- BamlCollectionHolder.cs
- FrameSecurityDescriptor.cs
- sqlser.cs
- COM2IProvidePropertyBuilderHandler.cs
- BuildProviderInstallComponent.cs
- RSAPKCS1SignatureFormatter.cs
- SolidColorBrush.cs
- ListItem.cs
- Errors.cs
- ActivityWithResultWrapper.cs
- DefaultParameterValueAttribute.cs
- SequentialOutput.cs
- TextElement.cs
- DataSourceGroupCollection.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- FileDialog_Vista_Interop.cs
- TempFiles.cs
- Logging.cs
- RIPEMD160Managed.cs
- CreateRefExpr.cs
- SafeSecurityHelper.cs
- BindingManagerDataErrorEventArgs.cs
- PersonalizationEntry.cs
- ParameterCollection.cs
- MethodExpression.cs
- DataGridViewComboBoxCell.cs
- ProcessManager.cs
- DbModificationCommandTree.cs
- ButtonChrome.cs
- DesignTimeTemplateParser.cs
- DrawingContextWalker.cs
- BaseHashHelper.cs
- DataReaderContainer.cs
- ValidationEventArgs.cs
- RankException.cs
- Cursors.cs
- Int16Animation.cs
- HttpChannelBindingToken.cs
- HealthMonitoringSectionHelper.cs
- DocumentApplicationJournalEntry.cs
- clipboard.cs
- ListViewHitTestInfo.cs
- DateTimeSerializationSection.cs
- RadioButtonStandardAdapter.cs
- Adorner.cs
- SQLCharsStorage.cs
- TableLayoutPanel.cs
- DataBoundControlDesigner.cs
- ParallelActivityDesigner.cs
- CreateParams.cs
- Html32TextWriter.cs
- ProxyAttribute.cs
- ValidationErrorCollection.cs