Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / Configuration / FormsAuthenticationCredentials.cs / 1 / 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 } // 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 [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 } // 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
- ScriptComponentDescriptor.cs
- Operand.cs
- WebPartDescription.cs
- MimeTypeAttribute.cs
- PassportAuthentication.cs
- NameSpaceEvent.cs
- ClientSideProviderDescription.cs
- SQLChars.cs
- XmlTextReader.cs
- FileDialogPermission.cs
- WebPartZoneAutoFormat.cs
- CopyNodeSetAction.cs
- InvalidWMPVersionException.cs
- TextLine.cs
- TextSelectionHighlightLayer.cs
- PropertyGridEditorPart.cs
- RuleSettingsCollection.cs
- VerificationException.cs
- PartitionResolver.cs
- DocComment.cs
- BindingElementCollection.cs
- XmlDataSourceNodeDescriptor.cs
- SmiEventSink.cs
- NativeStructs.cs
- GridViewActionList.cs
- MergeFailedEvent.cs
- XmlILStorageConverter.cs
- Matrix.cs
- DynamicRendererThreadManager.cs
- InstanceDataCollectionCollection.cs
- FixedPageProcessor.cs
- SystemMulticastIPAddressInformation.cs
- RawStylusInputCustomDataList.cs
- GeometryHitTestParameters.cs
- ConfigurationSectionGroupCollection.cs
- XmlNavigatorFilter.cs
- TableHeaderCell.cs
- Stack.cs
- Size.cs
- LocatorManager.cs
- PagePropertiesChangingEventArgs.cs
- APCustomTypeDescriptor.cs
- SelectionRange.cs
- CharStorage.cs
- ErrorFormatter.cs
- ConfigurationPermission.cs
- ComplexBindingPropertiesAttribute.cs
- TextContainerChangedEventArgs.cs
- IconHelper.cs
- HtmlUtf8RawTextWriter.cs
- MainMenu.cs
- ServicePointManager.cs
- UpdateExpressionVisitor.cs
- VersionedStreamOwner.cs
- ToolStripItemTextRenderEventArgs.cs
- Menu.cs
- TableCellAutomationPeer.cs
- ObjectDataSourceSelectingEventArgs.cs
- SchemaEntity.cs
- ItemContainerProviderWrapper.cs
- SqlClientWrapperSmiStream.cs
- Object.cs
- ObjectDisposedException.cs
- PeerToPeerException.cs
- LiteralSubsegment.cs
- Substitution.cs
- Int32Storage.cs
- Pkcs9Attribute.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- RealProxy.cs
- _BufferOffsetSize.cs
- HttpRequestWrapper.cs
- DetailsViewDeleteEventArgs.cs
- ProcessManager.cs
- Expressions.cs
- TextElementCollectionHelper.cs
- XmlRawWriter.cs
- RoutedEventArgs.cs
- RadioButtonDesigner.cs
- DataSysAttribute.cs
- TextTreeTextElementNode.cs
- WindowsTab.cs
- OracleInternalConnection.cs
- ListViewGroupConverter.cs
- MetabaseServerConfig.cs
- DefaultParameterValueAttribute.cs
- OdbcErrorCollection.cs
- ElementHostAutomationPeer.cs
- XmlWriterDelegator.cs
- EntityDataSourceQueryBuilder.cs
- XPathDocumentBuilder.cs
- PasswordRecoveryDesigner.cs
- EdmProperty.cs
- Brush.cs
- TreeSet.cs
- SiteMapDataSource.cs
- ListSortDescription.cs
- _SslState.cs
- ConsoleCancelEventArgs.cs
- GridSplitterAutomationPeer.cs