Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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
- WebRequestModulesSection.cs
- ScriptModule.cs
- HebrewNumber.cs
- ApplicationBuildProvider.cs
- SafeFileMappingHandle.cs
- TerminateDesigner.cs
- PinnedBufferMemoryStream.cs
- EpmTargetTree.cs
- ObjectPersistData.cs
- TypeDescriptionProvider.cs
- RelatedView.cs
- CodeNamespaceImport.cs
- MeshGeometry3D.cs
- ValidatingReaderNodeData.cs
- ByteStreamMessageEncodingElement.cs
- BrushValueSerializer.cs
- TableProvider.cs
- GlyphInfoList.cs
- Mutex.cs
- ContextQuery.cs
- PostBackOptions.cs
- NativeMethods.cs
- SqlIdentifier.cs
- oledbmetadatacolumnnames.cs
- __Filters.cs
- ServiceMetadataBehavior.cs
- JournalEntry.cs
- UnknownWrapper.cs
- DetailsViewRow.cs
- WinInetCache.cs
- EventsTab.cs
- ClonableStack.cs
- ReversePositionQuery.cs
- ConfigXmlElement.cs
- DataSourceGroupCollection.cs
- PersonalizationStateInfo.cs
- SmiContext.cs
- UserMapPath.cs
- SubstitutionResponseElement.cs
- StringWriter.cs
- ColorConverter.cs
- _CacheStreams.cs
- XmlWrappingWriter.cs
- WebDisplayNameAttribute.cs
- ProcessingInstructionAction.cs
- FixedNode.cs
- TextRange.cs
- Int32Rect.cs
- Parallel.cs
- MemberAccessException.cs
- SelectionGlyphBase.cs
- OdbcPermission.cs
- OleStrCAMarshaler.cs
- FilteredDataSetHelper.cs
- FreeFormPanel.cs
- CodeLabeledStatement.cs
- SegmentTree.cs
- XmlSchemaAppInfo.cs
- DataGridViewUtilities.cs
- GeneralTransform3DGroup.cs
- ScrollChrome.cs
- TextCharacters.cs
- IisTraceListener.cs
- CollectionDataContractAttribute.cs
- StringFunctions.cs
- ValueType.cs
- SemanticResolver.cs
- OracleConnectionFactory.cs
- DeferrableContent.cs
- IEnumerable.cs
- StringDictionary.cs
- SmiConnection.cs
- ScrollItemPattern.cs
- KeyFrames.cs
- ConfigurationErrorsException.cs
- BitmapEffectOutputConnector.cs
- InstanceLockedException.cs
- SHA256Cng.cs
- ImmutablePropertyDescriptorGridEntry.cs
- TemplatePropertyEntry.cs
- Int32Rect.cs
- ComAdminInterfaces.cs
- ApplicationSecurityInfo.cs
- ExtractorMetadata.cs
- WebPartCancelEventArgs.cs
- SqlGenerator.cs
- CallContext.cs
- WebEventCodes.cs
- SetStoryboardSpeedRatio.cs
- TraversalRequest.cs
- LinearGradientBrush.cs
- ValueConversionAttribute.cs
- RNGCryptoServiceProvider.cs
- ColorConvertedBitmap.cs
- EventEntry.cs
- TableLayoutStyle.cs
- SyndicationDeserializer.cs
- DateTimeOffset.cs
- ScriptingWebServicesSectionGroup.cs
- XmlCharCheckingWriter.cs