Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RegexMatch.cs
- NavigateEvent.cs
- ScalarType.cs
- ClientApiGenerator.cs
- HelpInfo.cs
- DynamicDataResources.Designer.cs
- FilterEventArgs.cs
- Style.cs
- IndexerHelper.cs
- MaterialCollection.cs
- RectangleHotSpot.cs
- AbsoluteQuery.cs
- SingleObjectCollection.cs
- ByteBufferPool.cs
- LocationInfo.cs
- MonthCalendarDesigner.cs
- DataGridViewRowsAddedEventArgs.cs
- ObjectDataSource.cs
- HtmlLink.cs
- DataSourceHelper.cs
- SearchExpression.cs
- HtmlContainerControl.cs
- ObservableCollection.cs
- SolidColorBrush.cs
- LineInfo.cs
- VirtualizedContainerService.cs
- ExtendedPropertyDescriptor.cs
- Vector3D.cs
- CacheChildrenQuery.cs
- SignedXml.cs
- PlainXmlWriter.cs
- NetworkInformationPermission.cs
- ConvertBinder.cs
- PkcsUtils.cs
- InfoCardListRequest.cs
- Serializer.cs
- StreamGeometry.cs
- TableCell.cs
- FontSizeConverter.cs
- CompoundFileStreamReference.cs
- StsCommunicationException.cs
- CheckedPointers.cs
- FactoryId.cs
- HandoffBehavior.cs
- CodeExporter.cs
- DeleteHelper.cs
- NetworkInterface.cs
- BooleanStorage.cs
- DirectionalLight.cs
- UnionExpr.cs
- SchemaImporterExtension.cs
- SchemaManager.cs
- WebPartExportVerb.cs
- SimpleWebHandlerParser.cs
- httpserverutility.cs
- ConstantExpression.cs
- PersonalizationStateInfo.cs
- KeyPressEvent.cs
- VectorCollection.cs
- EntitySqlException.cs
- StatusBarAutomationPeer.cs
- AppSettingsReader.cs
- SystemTcpConnection.cs
- NullableIntSumAggregationOperator.cs
- sqlstateclientmanager.cs
- InputScope.cs
- EmptyEnumerable.cs
- Timer.cs
- ContextProperty.cs
- RadioButtonRenderer.cs
- DriveNotFoundException.cs
- DiagnosticsConfigurationHandler.cs
- SignerInfo.cs
- SynchronizedPool.cs
- BindingNavigator.cs
- NameTable.cs
- RecognizerInfo.cs
- WebBrowserBase.cs
- TypeExtensionSerializer.cs
- Site.cs
- Events.cs
- ProviderConnectionPoint.cs
- MetaData.cs
- LayoutEngine.cs
- SqlCharStream.cs
- SynchronizedDispatch.cs
- XmlTextAttribute.cs
- DataViewSetting.cs
- SingleStorage.cs
- FontUnit.cs
- ResourceDescriptionAttribute.cs
- LazyInitializer.cs
- ValuePatternIdentifiers.cs
- DataGridViewComboBoxColumnDesigner.cs
- CompiledELinqQueryState.cs
- LinqToSqlWrapper.cs
- HttpCacheVary.cs
- PreservationFileWriter.cs
- CustomTrackingQuery.cs
- FullTrustAssembly.cs