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
- ProtectedConfigurationSection.cs
- TypeCodeDomSerializer.cs
- SqlCrossApplyToCrossJoin.cs
- Evaluator.cs
- PropertyTab.cs
- ServiceNameElementCollection.cs
- DbMetaDataCollectionNames.cs
- ZipIOExtraFieldElement.cs
- tooltip.cs
- CommentEmitter.cs
- MsmqChannelFactory.cs
- HandoffBehavior.cs
- PermissionSet.cs
- GroupStyle.cs
- MsmqDecodeHelper.cs
- XmlObjectSerializerReadContextComplex.cs
- GenericEnumerator.cs
- DbDataRecord.cs
- GorillaCodec.cs
- InputLanguage.cs
- SwitchLevelAttribute.cs
- TextServicesProperty.cs
- ellipse.cs
- EntityType.cs
- ExpressionBinding.cs
- GridViewUpdateEventArgs.cs
- InternalBufferManager.cs
- EntityContainer.cs
- CqlParserHelpers.cs
- Emitter.cs
- StaticSiteMapProvider.cs
- SiteMapDataSourceView.cs
- CheckPair.cs
- ObjectComplexPropertyMapping.cs
- QuaternionRotation3D.cs
- FastEncoderWindow.cs
- DataGridViewCellStyle.cs
- Attribute.cs
- SqlDependencyUtils.cs
- WindowsGrip.cs
- CacheSection.cs
- DataTableReader.cs
- UnaryQueryOperator.cs
- CommonProperties.cs
- FloaterParaClient.cs
- CellTreeNodeVisitors.cs
- FontFamilyConverter.cs
- DebuggerAttributes.cs
- ContentPropertyAttribute.cs
- CollectionEditor.cs
- XmlReaderSettings.cs
- SettingsBindableAttribute.cs
- Error.cs
- DocumentsTrace.cs
- GridViewRowPresenterBase.cs
- AppSettingsExpressionEditor.cs
- XmlUTF8TextReader.cs
- XsdBuilder.cs
- VisualStyleElement.cs
- ElementMarkupObject.cs
- ExeConfigurationFileMap.cs
- DocumentSequence.cs
- InheritanceContextHelper.cs
- XamlReaderHelper.cs
- ThrowHelper.cs
- DataTableMapping.cs
- GeometryHitTestResult.cs
- SmtpNegotiateAuthenticationModule.cs
- PolicyUnit.cs
- TreeIterator.cs
- DbParameterCollectionHelper.cs
- OleDbErrorCollection.cs
- MimeParameterWriter.cs
- TableAdapterManagerGenerator.cs
- ExpressionBuilder.cs
- ImportCatalogPart.cs
- Char.cs
- ButtonFlatAdapter.cs
- _ProxyRegBlob.cs
- LinqDataSourceView.cs
- IntSecurity.cs
- FontFamilyIdentifier.cs
- DataConnectionHelper.cs
- DispatcherFrame.cs
- DataGridHeaderBorder.cs
- ModuleBuilder.cs
- Errors.cs
- Bezier.cs
- ReadOnlyTernaryTree.cs
- StringFormat.cs
- ConfigurationElementCollection.cs
- AlternateView.cs
- OracleConnection.cs
- OSEnvironmentHelper.cs
- EventLogPermission.cs
- TreeChangeInfo.cs
- SoapInteropTypes.cs
- KeyGestureConverter.cs
- SequentialOutput.cs
- Command.cs