Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Configuration / ModuleElement.cs / 1305376 / ModuleElement.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Configuration { using System; using System.Configuration; using System.Reflection; using System.Security.Permissions; public sealed class ModuleElement : ConfigurationElement { public ModuleElement() { this.properties.Add(this.type); } protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } [ConfigurationProperty(ConfigurationStrings.Type)] public string Type { get { return (string)this[this.type]; } set { this[this.type] = value; } } ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty type = new ConfigurationProperty(ConfigurationStrings.Type, typeof(string), null, ConfigurationPropertyOptions.None); } } // 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
- HtmlElementCollection.cs
- XmlSerializerAssemblyAttribute.cs
- TypeNameHelper.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- PDBReader.cs
- XmlSchemaNotation.cs
- DetailsView.cs
- WinEventTracker.cs
- IsolatedStorageFileStream.cs
- ColumnResult.cs
- FixedSOMElement.cs
- DefaultPropertiesToSend.cs
- WpfSharedXamlSchemaContext.cs
- LiteralTextContainerControlBuilder.cs
- ClaimTypeElement.cs
- WorkflowOwnershipException.cs
- IncrementalCompileAnalyzer.cs
- WinInetCache.cs
- DataGridPageChangedEventArgs.cs
- RuleConditionDialog.Designer.cs
- WebPartEditorCancelVerb.cs
- EnumDataContract.cs
- DelegateHelpers.cs
- HttpClientProtocol.cs
- PropertyGridCommands.cs
- DataGridTablesFactory.cs
- CodeBlockBuilder.cs
- ComponentResourceManager.cs
- ProxyElement.cs
- ConcurrentBag.cs
- AssemblySettingAttributes.cs
- GlobalProxySelection.cs
- PermissionAttributes.cs
- ErrorWebPart.cs
- XmlEntityReference.cs
- ImageAttributes.cs
- ContextMenu.cs
- CustomCategoryAttribute.cs
- PassportAuthenticationEventArgs.cs
- DefaultAsyncDataDispatcher.cs
- WebPartEditorApplyVerb.cs
- UnsafeNativeMethods.cs
- DbTransaction.cs
- DesignBindingConverter.cs
- AuthenticateEventArgs.cs
- XmlAttributeOverrides.cs
- x509utils.cs
- ObjectDataSourceMethodEventArgs.cs
- ManualResetEvent.cs
- IgnoreDeviceFilterElementCollection.cs
- ConstraintStruct.cs
- ToolStripItemRenderEventArgs.cs
- XmlRawWriterWrapper.cs
- TemplateFactory.cs
- Clock.cs
- Attachment.cs
- IncrementalCompileAnalyzer.cs
- ALinqExpressionVisitor.cs
- AutomationPropertyInfo.cs
- LinkButton.cs
- RootBrowserWindowProxy.cs
- SoapMessage.cs
- ImportCatalogPart.cs
- ISessionStateStore.cs
- MenuAutomationPeer.cs
- validationstate.cs
- TrackingProfileDeserializationException.cs
- TextFormatterContext.cs
- CmsInterop.cs
- ChangePassword.cs
- XmlCustomFormatter.cs
- MasterPage.cs
- ImageList.cs
- PointIndependentAnimationStorage.cs
- FieldInfo.cs
- webproxy.cs
- Collection.cs
- Rotation3DAnimation.cs
- ValueUnavailableException.cs
- SessionIDManager.cs
- PreProcessInputEventArgs.cs
- ContentType.cs
- GetPolicyDetailsRequest.cs
- EventDescriptor.cs
- ThemeInfoAttribute.cs
- Models.cs
- ToolBarButton.cs
- ListItem.cs
- TextViewBase.cs
- FormClosingEvent.cs
- InteropTrackingRecord.cs
- BoundColumn.cs
- IgnoreDeviceFilterElementCollection.cs
- ItemCollectionEditor.cs
- Nodes.cs
- FacetDescription.cs
- CollectionConverter.cs
- ProcessingInstructionAction.cs
- DirectoryObjectSecurity.cs
- InputLanguageCollection.cs