Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Net / System / Net / Configuration / ModuleElement.cs / 1 / 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); } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ChannelSinkStacks.cs
- MonitorWrapper.cs
- FirstQueryOperator.cs
- TypeUtils.cs
- StylusPointProperties.cs
- ConstraintStruct.cs
- ModifierKeysValueSerializer.cs
- CmsInterop.cs
- X509Certificate.cs
- AdjustableArrowCap.cs
- RawContentTypeMapper.cs
- _NegoState.cs
- XpsThumbnail.cs
- ColumnMap.cs
- TemplateBaseAction.cs
- ContainerControl.cs
- DefaultWorkflowSchedulerService.cs
- XmlSchemaExporter.cs
- DesignerInterfaces.cs
- PriorityChain.cs
- WebServiceData.cs
- SecurityUtils.cs
- FormsAuthenticationTicket.cs
- FormViewModeEventArgs.cs
- RadioButton.cs
- FilterQueryOptionExpression.cs
- HandledMouseEvent.cs
- InitializerFacet.cs
- OleDbRowUpdatingEvent.cs
- ValidateNames.cs
- RuntimeVariableList.cs
- IChannel.cs
- __ComObject.cs
- PlatformNotSupportedException.cs
- NumberFunctions.cs
- ResponseStream.cs
- DataRowCollection.cs
- StatusCommandUI.cs
- RemotingSurrogateSelector.cs
- SqlXml.cs
- RoleServiceManager.cs
- DataObjectAttribute.cs
- IntranetCredentialPolicy.cs
- TabletCollection.cs
- DataPointer.cs
- AuthenticationException.cs
- HttpPostedFile.cs
- AggregateNode.cs
- datacache.cs
- localization.cs
- HtmlInputFile.cs
- SimpleParser.cs
- NativeActivityMetadata.cs
- RemotingClientProxy.cs
- MTConfigUtil.cs
- HttpRequestBase.cs
- Odbc32.cs
- TraceContextEventArgs.cs
- SystemMulticastIPAddressInformation.cs
- GenericTextProperties.cs
- AssemblyBuilderData.cs
- X509Chain.cs
- CodeAccessSecurityEngine.cs
- PropertiesTab.cs
- SimpleMailWebEventProvider.cs
- Dynamic.cs
- HyperLinkDataBindingHandler.cs
- COAUTHINFO.cs
- CodePrimitiveExpression.cs
- UriExt.cs
- AsyncResult.cs
- Graph.cs
- ControlLocalizer.cs
- ScriptManager.cs
- WS2007FederationHttpBindingElement.cs
- XmlCharCheckingWriter.cs
- WebBrowserBase.cs
- Enlistment.cs
- propertyentry.cs
- XmlSchemaValidationException.cs
- XmlTextWriter.cs
- XXXInfos.cs
- UpdatePanelTrigger.cs
- CodeCompileUnit.cs
- DesignerCapabilities.cs
- Html32TextWriter.cs
- AbandonedMutexException.cs
- StringUtil.cs
- DataGridViewCellValidatingEventArgs.cs
- ObservableDictionary.cs
- XmlIncludeAttribute.cs
- TransformerTypeCollection.cs
- Configuration.cs
- EntityModelBuildProvider.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- GridItemProviderWrapper.cs
- TextWriterTraceListener.cs
- PrefixQName.cs
- DeploymentExceptionMapper.cs
- ThreadAttributes.cs