Code:
/ DotNET / DotNET / 8.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
- BindingBase.cs
- XmlQualifiedNameTest.cs
- ExtentCqlBlock.cs
- DebugView.cs
- StaticSiteMapProvider.cs
- NativeMethods.cs
- StrokeFIndices.cs
- ValueQuery.cs
- SelectionRange.cs
- IPCCacheManager.cs
- DetailsView.cs
- Image.cs
- FigureParaClient.cs
- GeneralTransform.cs
- WindowsFormsLinkLabel.cs
- NTAccount.cs
- MustUnderstandBehavior.cs
- ListBox.cs
- SpecialTypeDataContract.cs
- WindowsSysHeader.cs
- ComponentConverter.cs
- AutoGeneratedFieldProperties.cs
- Splitter.cs
- WebPartConnectionsDisconnectVerb.cs
- ServiceEndpointElementCollection.cs
- RemoteX509Token.cs
- FormViewModeEventArgs.cs
- EventHandlerList.cs
- ServiceHostingEnvironment.cs
- SctClaimDictionary.cs
- TextDpi.cs
- MimeObjectFactory.cs
- FigureParagraph.cs
- IndexOutOfRangeException.cs
- HotCommands.cs
- LockRecursionException.cs
- HitTestFilterBehavior.cs
- TagNameToTypeMapper.cs
- HwndKeyboardInputProvider.cs
- ACL.cs
- HostElement.cs
- SecurityContextSecurityTokenParameters.cs
- LinearGradientBrush.cs
- ProfessionalColors.cs
- Configuration.cs
- ReaderContextStackData.cs
- SQLBytesStorage.cs
- ToolStripItemCollection.cs
- DynamicQueryableWrapper.cs
- Quaternion.cs
- UnmanagedMarshal.cs
- DataTableCollection.cs
- SourceFilter.cs
- DependencyObjectValidator.cs
- SqlProviderServices.cs
- Double.cs
- XmlWellformedWriter.cs
- StorageSetMapping.cs
- SecurityCriticalDataForSet.cs
- EndEvent.cs
- ScopeCompiler.cs
- TypeDescriptionProvider.cs
- securitycriticaldataClass.cs
- FontConverter.cs
- NamedPipeProcessProtocolHandler.cs
- CfgParser.cs
- ActivationProxy.cs
- PrintPreviewGraphics.cs
- WindowsScrollBar.cs
- ContentIterators.cs
- AttributedMetaModel.cs
- DesignerSerializerAttribute.cs
- TypeLibraryHelper.cs
- ExitEventArgs.cs
- ActiveXHelper.cs
- SurrogateChar.cs
- MostlySingletonList.cs
- DurableInstance.cs
- RtfToken.cs
- metadatamappinghashervisitor.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- XmlRawWriter.cs
- BindingMemberInfo.cs
- NativeMethods.cs
- RecordManager.cs
- RecommendedAsConfigurableAttribute.cs
- DataRelation.cs
- Variable.cs
- NativeActivityTransactionContext.cs
- RepeatButtonAutomationPeer.cs
- XmlReflectionMember.cs
- EncryptedPackageFilter.cs
- ManifestResourceInfo.cs
- MachineKeyConverter.cs
- ObjectQueryExecutionPlan.cs
- XmlIgnoreAttribute.cs
- DesignerSerializationOptionsAttribute.cs
- SecUtil.cs
- UserControl.cs
- FileStream.cs