Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Net / System / Net / Configuration / AuthenticationModuleElement.cs / 1 / AuthenticationModuleElement.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 AuthenticationModuleElement : ConfigurationElement { public AuthenticationModuleElement() { this.properties.Add(this.type); } public AuthenticationModuleElement(string typeName) : this() { if (typeName != (string)this.type.DefaultValue) { this.Type = typeName; } } protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } [ConfigurationProperty(ConfigurationStrings.Type, IsRequired=true, IsKey = true)] public string Type { get { return (string)this[this.type]; } set { this[this.type] = value; } } internal string Key { get { return this.Type; } } ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty type = new ConfigurationProperty(ConfigurationStrings.Type, typeof(string), null, ConfigurationPropertyOptions.IsKey); } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UnsafeNativeMethods.cs
- Util.cs
- ConfigViewGenerator.cs
- GridViewUpdatedEventArgs.cs
- BehaviorService.cs
- OpCodes.cs
- UIntPtr.cs
- EventsTab.cs
- RealizationDrawingContextWalker.cs
- ConfigurationStrings.cs
- NonDualMessageSecurityOverHttp.cs
- assemblycache.cs
- LinearGradientBrush.cs
- RulePatternOps.cs
- RemotingAttributes.cs
- ListViewGroup.cs
- DataPagerFieldCollection.cs
- Highlights.cs
- ReliableSessionBindingElementImporter.cs
- WindowsUpDown.cs
- ColorContextHelper.cs
- Types.cs
- XmlAttributeCollection.cs
- DesignerOptions.cs
- invalidudtexception.cs
- MouseDevice.cs
- FramingFormat.cs
- CursorInteropHelper.cs
- CodeParameterDeclarationExpression.cs
- TabControlEvent.cs
- XmlWrappingReader.cs
- PathFigure.cs
- ClassDataContract.cs
- UserValidatedEventArgs.cs
- IsolatedStorage.cs
- UserControlCodeDomTreeGenerator.cs
- LinkedList.cs
- XmlAttribute.cs
- HtmlLink.cs
- BamlReader.cs
- ValidatingPropertiesEventArgs.cs
- cookiecollection.cs
- safemediahandle.cs
- RoleBoolean.cs
- HttpResponseHeader.cs
- InstanceCreationEditor.cs
- FactoryGenerator.cs
- MobileFormsAuthentication.cs
- PropertyGrid.cs
- GPPOINTF.cs
- CodeCommentStatementCollection.cs
- LazyTextWriterCreator.cs
- DataControlFieldCell.cs
- MobileUserControl.cs
- WebPartMenuStyle.cs
- LinqDataSourceHelper.cs
- RecommendedAsConfigurableAttribute.cs
- OperationAbortedException.cs
- SmtpSection.cs
- HWStack.cs
- StopStoryboard.cs
- GifBitmapDecoder.cs
- SecurityRuntime.cs
- TripleDES.cs
- SiteIdentityPermission.cs
- InkCanvasFeedbackAdorner.cs
- CompilerScope.Storage.cs
- URIFormatException.cs
- InternalSafeNativeMethods.cs
- WindowsTokenRoleProvider.cs
- GeometryModel3D.cs
- GridViewEditEventArgs.cs
- SymDocumentType.cs
- HierarchicalDataBoundControlAdapter.cs
- SectionVisual.cs
- PrintDocument.cs
- SoapIgnoreAttribute.cs
- InstancePersistenceCommandException.cs
- FtpWebRequest.cs
- AssociationTypeEmitter.cs
- X509ClientCertificateAuthentication.cs
- Int32Collection.cs
- TreeViewHitTestInfo.cs
- RijndaelCryptoServiceProvider.cs
- ReadOnlyDictionary.cs
- VBIdentifierTrimConverter.cs
- WorkflowServiceOperationListItem.cs
- ClassHandlersStore.cs
- PreviewKeyDownEventArgs.cs
- IPPacketInformation.cs
- precedingquery.cs
- ResourceManagerWrapper.cs
- DBCSCodePageEncoding.cs
- DocumentViewerBaseAutomationPeer.cs
- Html32TextWriter.cs
- XhtmlBasicListAdapter.cs
- FixedTextPointer.cs
- TabRenderer.cs
- CachedFontFamily.cs
- Matrix.cs