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
- IHttpResponseInternal.cs
- COSERVERINFO.cs
- TreePrinter.cs
- ImageFormatConverter.cs
- _CookieModule.cs
- _ScatterGatherBuffers.cs
- OLEDB_Util.cs
- XmlCharacterData.cs
- TextRangeSerialization.cs
- BStrWrapper.cs
- IItemContainerGenerator.cs
- ComponentEditorPage.cs
- StrokeRenderer.cs
- CommonServiceBehaviorElement.cs
- HMACSHA256.cs
- BinaryReader.cs
- DesignerCommandAdapter.cs
- DbFunctionCommandTree.cs
- HtmlInputReset.cs
- EventMappingSettings.cs
- baseshape.cs
- EffectiveValueEntry.cs
- DataSysAttribute.cs
- InvokePattern.cs
- printdlgexmarshaler.cs
- ActivationServices.cs
- SrgsRule.cs
- EnvironmentPermission.cs
- InstanceDescriptor.cs
- ping.cs
- WebPartCatalogCloseVerb.cs
- ObjectItemAttributeAssemblyLoader.cs
- BitmapFrameDecode.cs
- FileInfo.cs
- TemplateBamlTreeBuilder.cs
- ExpandedProjectionNode.cs
- ZoneButton.cs
- WebPartEditorCancelVerb.cs
- ProtocolViolationException.cs
- ObjectQueryProvider.cs
- ListenerTraceUtility.cs
- PropertyValue.cs
- MarshalByRefObject.cs
- _UriTypeConverter.cs
- ExtendedProtectionPolicyTypeConverter.cs
- AxisAngleRotation3D.cs
- SchemaNotation.cs
- GlyphInfoList.cs
- StringArrayConverter.cs
- MasterPageCodeDomTreeGenerator.cs
- EpmCustomContentSerializer.cs
- StringUtil.cs
- Process.cs
- FastPropertyAccessor.cs
- DocumentReference.cs
- MatrixTransform3D.cs
- SurrogateSelector.cs
- control.ime.cs
- ParameterReplacerVisitor.cs
- CaseInsensitiveComparer.cs
- XmlNodeComparer.cs
- MediaScriptCommandRoutedEventArgs.cs
- ScrollableControl.cs
- XmlNotation.cs
- MaskedTextBoxDesigner.cs
- UIPropertyMetadata.cs
- NotImplementedException.cs
- SafeLibraryHandle.cs
- GetWinFXPath.cs
- URLAttribute.cs
- COM2Enum.cs
- Bezier.cs
- SmiConnection.cs
- ValidationRuleCollection.cs
- ServiceNameElementCollection.cs
- HwndSubclass.cs
- XmlQuerySequence.cs
- DropShadowBitmapEffect.cs
- TimelineClockCollection.cs
- CatalogPart.cs
- ToolZone.cs
- MetadataItemSerializer.cs
- PropertyItem.cs
- ConfigurationSettings.cs
- entityreference_tresulttype.cs
- TypeInfo.cs
- MD5CryptoServiceProvider.cs
- MetabaseSettingsIis7.cs
- SHA384CryptoServiceProvider.cs
- OneWayChannelFactory.cs
- ProofTokenCryptoHandle.cs
- CharacterBufferReference.cs
- Bitmap.cs
- NativeCppClassAttribute.cs
- AppDomainManager.cs
- OAVariantLib.cs
- ChtmlTextWriter.cs
- CompModSwitches.cs
- HandleDictionary.cs
- WinFormsSpinner.cs