Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Configuration / AuthenticationModuleElement.cs / 1305376 / 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); } } // 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
- DynamicDiscoSearcher.cs
- COM2IDispatchConverter.cs
- Transform3DGroup.cs
- DATA_BLOB.cs
- PageContentAsyncResult.cs
- CursorConverter.cs
- CuspData.cs
- odbcmetadatacolumnnames.cs
- UrlPropertyAttribute.cs
- WorkflowApplicationUnhandledExceptionEventArgs.cs
- SqlDataSourceFilteringEventArgs.cs
- FloaterBaseParaClient.cs
- ObjectDataSourceDisposingEventArgs.cs
- TextBoxRenderer.cs
- SmtpNtlmAuthenticationModule.cs
- ListChunk.cs
- WsdlImporterElementCollection.cs
- TabletCollection.cs
- ItemList.cs
- InvalidPropValue.cs
- TabControlEvent.cs
- SpAudioStreamWrapper.cs
- SortFieldComparer.cs
- StrokeFIndices.cs
- FontWeights.cs
- DesignerVerb.cs
- BehaviorEditorPart.cs
- SqlDataSourceSelectingEventArgs.cs
- DesignerObject.cs
- PrePostDescendentsWalker.cs
- QueryValue.cs
- ExtractedStateEntry.cs
- BevelBitmapEffect.cs
- FileSystemWatcher.cs
- ObjectStateManagerMetadata.cs
- ZipArchive.cs
- RequestCachePolicy.cs
- NullableLongMinMaxAggregationOperator.cs
- ZipIOFileItemStream.cs
- PropertyValueChangedEvent.cs
- SpeechRecognizer.cs
- SafeNativeMethods.cs
- ViewManagerAttribute.cs
- SortedDictionary.cs
- RequestSecurityToken.cs
- MenuEventArgs.cs
- GrammarBuilderBase.cs
- FormsAuthenticationTicket.cs
- XmlObjectSerializerWriteContextComplex.cs
- MenuItemStyleCollection.cs
- DropSource.cs
- GridViewCancelEditEventArgs.cs
- SingleResultAttribute.cs
- TypedTableGenerator.cs
- MonitorWrapper.cs
- ContentPresenter.cs
- VisualBrush.cs
- XmlSchemaSet.cs
- BaseDataListPage.cs
- BehaviorDragDropEventArgs.cs
- RangeValuePatternIdentifiers.cs
- EncryptedHeader.cs
- HashCodeCombiner.cs
- SchemeSettingElementCollection.cs
- ContentTextAutomationPeer.cs
- VarRefManager.cs
- IndicCharClassifier.cs
- SqlCacheDependency.cs
- ErrorActivity.cs
- FullTextState.cs
- ListBoxAutomationPeer.cs
- BinaryCommonClasses.cs
- SmuggledIUnknown.cs
- MenuStrip.cs
- HashHelper.cs
- ToolStripPanelCell.cs
- PointHitTestResult.cs
- DetailsViewDesigner.cs
- WebPartRestoreVerb.cs
- cookie.cs
- VBCodeProvider.cs
- DataObject.cs
- OutputCacheProfile.cs
- SelectionManager.cs
- PrintingPermission.cs
- MetadataArtifactLoaderFile.cs
- Journaling.cs
- WebPartExportVerb.cs
- MasterPageBuildProvider.cs
- _DisconnectOverlappedAsyncResult.cs
- GifBitmapDecoder.cs
- SqlRecordBuffer.cs
- Restrictions.cs
- EventEntry.cs
- InternalSafeNativeMethods.cs
- ToolStripScrollButton.cs
- OdbcEnvironmentHandle.cs
- FrameworkElement.cs
- AsymmetricKeyExchangeDeformatter.cs
- ToolStripRenderEventArgs.cs