Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / FormsAuthenticationCredentials.cs / 2 / FormsAuthenticationCredentials.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /***************************************************************************** From machine.config******************************************************************************/ namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.Globalization; using System.IO; using System.Text; using System.Web.Util; using System.ComponentModel; using System.Security.Permissions; // class AuthenticationSection [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class FormsAuthenticationCredentials : ConfigurationElement { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propUsers = new ConfigurationProperty(null, typeof(FormsAuthenticationUserCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); private static readonly ConfigurationProperty _propPasswordFormat = new ConfigurationProperty("passwordFormat", typeof(FormsAuthPasswordFormat), FormsAuthPasswordFormat.SHA1, ConfigurationPropertyOptions.None); static FormsAuthenticationCredentials() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propUsers); _properties.Add(_propPasswordFormat); } public FormsAuthenticationCredentials() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("", IsDefaultCollection = true, Options = ConfigurationPropertyOptions.IsDefaultCollection)] public FormsAuthenticationUserCollection Users { get { return (FormsAuthenticationUserCollection)base[_propUsers]; } } [ConfigurationProperty("passwordFormat", DefaultValue = FormsAuthPasswordFormat.SHA1)] public FormsAuthPasswordFormat PasswordFormat { get { return (FormsAuthPasswordFormat)base[_propPasswordFormat]; } set { base[_propPasswordFormat] = value; } } } // class FormsAuthenticationCredentials }
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SurrogateSelector.cs
- SHA512.cs
- TraceRecords.cs
- HtmlLink.cs
- StructuralCache.cs
- CodeLinePragma.cs
- XmlSchemaValidationException.cs
- DataBindingList.cs
- RecommendedAsConfigurableAttribute.cs
- PartitionedStreamMerger.cs
- WebServiceClientProxyGenerator.cs
- DataGridGeneralPage.cs
- FamilyMapCollection.cs
- SmiRecordBuffer.cs
- EnumerableCollectionView.cs
- ImageSourceValueSerializer.cs
- TypeResolvingOptionsAttribute.cs
- JoinGraph.cs
- ControlDesigner.cs
- EventDescriptorCollection.cs
- UIElementPropertyUndoUnit.cs
- Attribute.cs
- BezierSegment.cs
- MessageSecurityProtocol.cs
- Matrix3DConverter.cs
- DataGridCellsPresenter.cs
- SafeHandles.cs
- NavigationHelper.cs
- SettingsPropertyNotFoundException.cs
- IFlowDocumentViewer.cs
- PermissionToken.cs
- SAPICategories.cs
- DataObject.cs
- Model3DGroup.cs
- SortedSetDebugView.cs
- XmlDocumentFragment.cs
- Number.cs
- InlineObject.cs
- SuppressMessageAttribute.cs
- BamlRecordWriter.cs
- SoapElementAttribute.cs
- Hash.cs
- RTTypeWrapper.cs
- DeleteStoreRequest.cs
- ComboBox.cs
- Funcletizer.cs
- TreeBuilderXamlTranslator.cs
- EndGetFileNameFromUserRequest.cs
- TableCellAutomationPeer.cs
- VarRefManager.cs
- Evidence.cs
- CustomDictionarySources.cs
- QilXmlWriter.cs
- RectAnimationUsingKeyFrames.cs
- WebPartManager.cs
- WebPartConnectionsCancelEventArgs.cs
- BufferedGraphicsContext.cs
- StorageEntitySetMapping.cs
- Processor.cs
- DiscoveryDocumentLinksPattern.cs
- SerializableAttribute.cs
- DecoderExceptionFallback.cs
- StyleSelector.cs
- ExtendedTransformFactory.cs
- SiteIdentityPermission.cs
- DateTimeParse.cs
- UriSection.cs
- SiteMembershipCondition.cs
- HtmlTableRow.cs
- SynchronizationHandlesCodeDomSerializer.cs
- LocatorManager.cs
- IApplicationTrustManager.cs
- RegexTree.cs
- StaticExtensionConverter.cs
- Roles.cs
- ClientTargetSection.cs
- ValidationSummary.cs
- ContentOperations.cs
- Color.cs
- SocketInformation.cs
- Soap.cs
- GridViewUpdatedEventArgs.cs
- CounterNameConverter.cs
- SQlBooleanStorage.cs
- TextChangedEventArgs.cs
- SequentialUshortCollection.cs
- IssuedTokenParametersEndpointAddressElement.cs
- DesignerTransaction.cs
- OperationFormatter.cs
- AnnotationComponentManager.cs
- ContentTextAutomationPeer.cs
- TransformGroup.cs
- Listen.cs
- DoubleMinMaxAggregationOperator.cs
- TextEditorTyping.cs
- BindingListCollectionView.cs
- util.cs
- XmlSerializableWriter.cs
- EventSource.cs
- XPathSelfQuery.cs