Code:
/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / ndp / fx / src / xsp / System / Web / Extensions / ClientServices / Providers / ClientFormsAuthenticationCredentials.cs / 1 / ClientFormsAuthenticationCredentials.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.ClientServices.Providers { using System; using System.Diagnostics.CodeAnalysis; public class ClientFormsAuthenticationCredentials { [SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly", MessageId="username", Justification="consistent with Whidbey")] public ClientFormsAuthenticationCredentials(string username, string password, bool rememberMe) { _UserName = username; _Password = password; _RememberMe = rememberMe; } public string UserName { get { return _UserName; } set { _UserName = value; } } public string Password { get { return _Password; } set { _Password = value; } } public bool RememberMe { get { return _RememberMe; } set { _RememberMe = value; } } private string _UserName; private string _Password; private bool _RememberMe; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FileSystemInfo.cs
- MetadataArtifactLoader.cs
- TextRangeEditLists.cs
- DynamicQueryStringParameter.cs
- PixelFormatConverter.cs
- LinkedResourceCollection.cs
- TableRowGroup.cs
- AttributeEmitter.cs
- RadioButtonPopupAdapter.cs
- FormViewInsertEventArgs.cs
- ToolBarButton.cs
- ResXFileRef.cs
- WebPartHeaderCloseVerb.cs
- ButtonPopupAdapter.cs
- _ShellExpression.cs
- ChooseAction.cs
- OperatingSystemVersionCheck.cs
- ColorKeyFrameCollection.cs
- TraceListener.cs
- AsymmetricAlgorithm.cs
- ListBoxItemWrapperAutomationPeer.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- XmlSchemaSimpleTypeUnion.cs
- columnmapkeybuilder.cs
- ObjectStateFormatter.cs
- SafeMarshalContext.cs
- CatalogPartCollection.cs
- ObjectDataSource.cs
- InvalidTimeZoneException.cs
- SettingsProviderCollection.cs
- SoapEnumAttribute.cs
- CalendarModeChangedEventArgs.cs
- WebColorConverter.cs
- NewArray.cs
- RegexTypeEditor.cs
- DataGridItem.cs
- ComPlusInstanceProvider.cs
- SrgsGrammarCompiler.cs
- FormViewActionList.cs
- SafeFileHandle.cs
- XmlSerializer.cs
- EntityDataSourceStatementEditor.cs
- HttpCookiesSection.cs
- Container.cs
- Typography.cs
- MethodAccessException.cs
- ConfigurationStrings.cs
- Cast.cs
- SyndicationItem.cs
- Connector.cs
- CustomPopupPlacement.cs
- ContextMenu.cs
- ModifiableIteratorCollection.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- CompModSwitches.cs
- HtmlGenericControl.cs
- DocumentViewerConstants.cs
- OracleConnectionString.cs
- MetabaseServerConfig.cs
- TagNameToTypeMapper.cs
- LambdaCompiler.Expressions.cs
- CfgSemanticTag.cs
- DataColumn.cs
- CallSiteBinder.cs
- Scripts.cs
- ZoomingMessageFilter.cs
- ColumnMapCopier.cs
- MarkedHighlightComponent.cs
- HyperLinkField.cs
- ToolStripSeparatorRenderEventArgs.cs
- SharedUtils.cs
- GACMembershipCondition.cs
- Decorator.cs
- CatalogZoneBase.cs
- SafeThreadHandle.cs
- FormViewActionList.cs
- ConfigXmlAttribute.cs
- TrustLevelCollection.cs
- XmlnsPrefixAttribute.cs
- DesignerTransaction.cs
- Site.cs
- AddInProcess.cs
- DataListItemEventArgs.cs
- UnsafeNativeMethods.cs
- HandoffBehavior.cs
- RSAOAEPKeyExchangeFormatter.cs
- PassportPrincipal.cs
- DocumentPageView.cs
- ReturnType.cs
- DataListItemCollection.cs
- DoubleAnimation.cs
- COM2TypeInfoProcessor.cs
- EntityDataSourceChangingEventArgs.cs
- AdornerDecorator.cs
- MessageBox.cs
- OperationCanceledException.cs
- DataGridViewButtonColumn.cs
- Focus.cs
- DataAdapter.cs
- SmtpReplyReaderFactory.cs