Code:
/ FX-1434 / FX-1434 / 1.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
- ListViewContainer.cs
- SystemIPInterfaceProperties.cs
- MexTcpBindingCollectionElement.cs
- BrowserCapabilitiesFactory.cs
- ScriptingScriptResourceHandlerSection.cs
- UIElementParaClient.cs
- FormView.cs
- BufferedWebEventProvider.cs
- ScrollBarRenderer.cs
- InternalConfigRoot.cs
- DataGridViewDataConnection.cs
- GetFileNameResult.cs
- ApplicationInterop.cs
- JournalEntryStack.cs
- SqlTopReducer.cs
- ArraySortHelper.cs
- RadioButtonFlatAdapter.cs
- AssertUtility.cs
- hresults.cs
- AudioStateChangedEventArgs.cs
- SimpleBitVector32.cs
- UnsafeNativeMethods.cs
- ParserContext.cs
- DataGridViewComponentPropertyGridSite.cs
- FlowDocumentReaderAutomationPeer.cs
- PerformanceCounter.cs
- QueryOutputWriter.cs
- SafeNativeMethods.cs
- BitmapEffectState.cs
- PerfCounterSection.cs
- BoundConstants.cs
- EntitySqlException.cs
- DbDataRecord.cs
- EmptyReadOnlyDictionaryInternal.cs
- SecurityTokenTypes.cs
- ListView.cs
- IDReferencePropertyAttribute.cs
- TextElement.cs
- RequestCachingSection.cs
- BuildDependencySet.cs
- SymLanguageVendor.cs
- CreateUserErrorEventArgs.cs
- CodeIterationStatement.cs
- PropertyIDSet.cs
- UrlPath.cs
- ParserExtension.cs
- EntityDataSourceQueryBuilder.cs
- TypeDelegator.cs
- PackageDigitalSignatureManager.cs
- CompositeFontFamily.cs
- IisTraceWebEventProvider.cs
- GridPattern.cs
- DataGridViewBand.cs
- HighlightVisual.cs
- Function.cs
- SecurityDocument.cs
- FileDialogCustomPlace.cs
- ExtenderHelpers.cs
- SourceFilter.cs
- CultureMapper.cs
- RNGCryptoServiceProvider.cs
- CalendarDesigner.cs
- Models.cs
- BitmapCodecInfoInternal.cs
- HashAlgorithm.cs
- CaretElement.cs
- ErrorEventArgs.cs
- GridSplitterAutomationPeer.cs
- Utils.cs
- TraceContext.cs
- XmlSchemaGroupRef.cs
- NamespaceList.cs
- SetIterators.cs
- DesignerHelpers.cs
- VisualProxy.cs
- EntityDataSourceMemberPath.cs
- ExtractorMetadata.cs
- MatrixStack.cs
- InputScopeConverter.cs
- HttpRequestWrapper.cs
- PathFigure.cs
- SqlRetyper.cs
- DefaultPrintController.cs
- CompilerError.cs
- ContactManager.cs
- CorruptingExceptionCommon.cs
- Margins.cs
- PnrpPermission.cs
- RegexMatch.cs
- XmlDocumentType.cs
- EntityViewContainer.cs
- ErrorTolerantObjectWriter.cs
- ToolStripCodeDomSerializer.cs
- DispatcherExceptionEventArgs.cs
- AtomServiceDocumentSerializer.cs
- DbgCompiler.cs
- _FixedSizeReader.cs
- DesignerActionMethodItem.cs
- SmiTypedGetterSetter.cs
- LinkButton.cs