Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / FormsAuthenticationCredentials.cs / 1305376 / 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 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 } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // 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 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 } // 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
- ImportCatalogPart.cs
- QueryCursorEventArgs.cs
- StrongBox.cs
- RenderData.cs
- CircleHotSpot.cs
- AuditLevel.cs
- CssStyleCollection.cs
- XmlArrayItemAttribute.cs
- Model3DCollection.cs
- RightsManagementInformation.cs
- TableColumnCollectionInternal.cs
- Adorner.cs
- CapabilitiesState.cs
- VisualBrush.cs
- MobileControlPersister.cs
- AssociatedControlConverter.cs
- SingleQueryOperator.cs
- X500Name.cs
- LongSumAggregationOperator.cs
- ProcessHostServerConfig.cs
- ToolStripSeparator.cs
- CodeMethodMap.cs
- SettingsPropertyIsReadOnlyException.cs
- DbBuffer.cs
- ClassHandlersStore.cs
- AnnotationObservableCollection.cs
- FormsIdentity.cs
- DecimalAverageAggregationOperator.cs
- UniqueIdentifierService.cs
- BigInt.cs
- SqlBinder.cs
- WsatServiceAddress.cs
- ICspAsymmetricAlgorithm.cs
- ItemCheckedEvent.cs
- Double.cs
- EncoderNLS.cs
- ZipIOFileItemStream.cs
- WebReference.cs
- XmlParser.cs
- SourceSwitch.cs
- RuleSetCollection.cs
- Merger.cs
- NavigateUrlConverter.cs
- CodeMemberField.cs
- LicenseException.cs
- SrgsToken.cs
- ToolStripOverflowButton.cs
- TextRangeAdaptor.cs
- TraceXPathNavigator.cs
- RowsCopiedEventArgs.cs
- WindowsPen.cs
- ImageIndexConverter.cs
- ImageMetadata.cs
- Roles.cs
- SqlGenerator.cs
- mil_sdk_version.cs
- NotifyIcon.cs
- PageContentAsyncResult.cs
- RowUpdatedEventArgs.cs
- RequestCacheValidator.cs
- Model3DCollection.cs
- TranslateTransform.cs
- DataGridCommandEventArgs.cs
- DesignerRegionMouseEventArgs.cs
- __Filters.cs
- Scripts.cs
- EntityDataSourceReferenceGroup.cs
- TreeBuilderBamlTranslator.cs
- FlowLayout.cs
- BufferCache.cs
- OpCellTreeNode.cs
- _AutoWebProxyScriptEngine.cs
- TreeNodeStyle.cs
- SplayTreeNode.cs
- UTF7Encoding.cs
- TextBoxAutoCompleteSourceConverter.cs
- OleStrCAMarshaler.cs
- XmlStringTable.cs
- HostingEnvironmentSection.cs
- WebPart.cs
- Annotation.cs
- WindowsListViewItem.cs
- FreeFormDesigner.cs
- DocumentSignatureManager.cs
- XPathPatternBuilder.cs
- MemberPathMap.cs
- BuilderInfo.cs
- PreservationFileWriter.cs
- ApplicationSettingsBase.cs
- TemplateKey.cs
- RelatedEnd.cs
- StreamReader.cs
- SqlDependency.cs
- ReceiveActivityValidator.cs
- XmlObjectSerializerContext.cs
- XsltLoader.cs
- elementinformation.cs
- OutputCacheProviderCollection.cs
- DoubleStorage.cs
- GridViewUpdatedEventArgs.cs