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
- MasterPageBuildProvider.cs
- StylusTip.cs
- RSACryptoServiceProvider.cs
- GridViewRow.cs
- CodeDOMUtility.cs
- ImageSourceValueSerializer.cs
- DispatcherHooks.cs
- mediapermission.cs
- AppDomainEvidenceFactory.cs
- COM2Properties.cs
- QuestionEventArgs.cs
- XmlSchemaDocumentation.cs
- JulianCalendar.cs
- XmlComplianceUtil.cs
- ExecutionContext.cs
- ExtensionFile.cs
- FixedSOMTableCell.cs
- ProfileInfo.cs
- NativeConfigurationLoader.cs
- SynchronizingStream.cs
- ClientSettings.cs
- SortQuery.cs
- FileReservationCollection.cs
- HeaderedItemsControl.cs
- RijndaelCryptoServiceProvider.cs
- sqlinternaltransaction.cs
- SynchronizedKeyedCollection.cs
- BinHexDecoder.cs
- SQLSingle.cs
- StringComparer.cs
- CodeSnippetStatement.cs
- ConnectionManagementElementCollection.cs
- ListViewItemSelectionChangedEvent.cs
- CharAnimationBase.cs
- SystemResourceKey.cs
- ImageListImage.cs
- DataGridViewCellConverter.cs
- AudioStateChangedEventArgs.cs
- IOException.cs
- QilXmlReader.cs
- WorkflowApplicationCompletedEventArgs.cs
- SqlDataSourceFilteringEventArgs.cs
- SqlDataSourceDesigner.cs
- OletxCommittableTransaction.cs
- SqlClientWrapperSmiStream.cs
- TailCallAnalyzer.cs
- ArraySubsetEnumerator.cs
- Array.cs
- Glyph.cs
- Module.cs
- ToolTipAutomationPeer.cs
- PaperSource.cs
- SpecialNameAttribute.cs
- DesignerSerializationManager.cs
- ValueCollectionParameterReader.cs
- ComponentDispatcherThread.cs
- PropertyItem.cs
- CodeParameterDeclarationExpression.cs
- WebContext.cs
- CanExecuteRoutedEventArgs.cs
- Utils.cs
- WebBrowserSiteBase.cs
- Speller.cs
- PeerNameRegistration.cs
- DbParameterHelper.cs
- ChannelFactory.cs
- SafeNativeMethods.cs
- UInt64Converter.cs
- XsdBuildProvider.cs
- ItemCheckedEvent.cs
- StringUtil.cs
- SchemaEntity.cs
- Constant.cs
- XmlnsCompatibleWithAttribute.cs
- TabletDeviceInfo.cs
- LocalValueEnumerator.cs
- KnownTypes.cs
- ReflectionServiceProvider.cs
- HwndSourceKeyboardInputSite.cs
- Help.cs
- elementinformation.cs
- ObjectQuery.cs
- CryptoApi.cs
- DesignTimeTemplateParser.cs
- ProviderConnectionPoint.cs
- DefaultParameterValueAttribute.cs
- PartialTrustValidationBehavior.cs
- DriveNotFoundException.cs
- TransactionContextValidator.cs
- Completion.cs
- DrawingImage.cs
- ExportOptions.cs
- TextSegment.cs
- MenuRendererStandards.cs
- AssociationSetMetadata.cs
- FormattedTextSymbols.cs
- ServicePointManager.cs
- MaterialGroup.cs
- Timer.cs
- CodeAssignStatement.cs