Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OleStrCAMarshaler.cs
- SessionPageStateSection.cs
- GenerateHelper.cs
- PersistStreamTypeWrapper.cs
- OracleTimeSpan.cs
- ListViewInsertEventArgs.cs
- ExpressionHelper.cs
- FontCacheUtil.cs
- CacheOutputQuery.cs
- XmlSubtreeReader.cs
- SecurityCriticalDataForSet.cs
- AutomationElementCollection.cs
- MessageContractAttribute.cs
- DynamicRenderer.cs
- TraceListeners.cs
- NameSpaceExtractor.cs
- PeerInvitationResponse.cs
- DefaultPropertyAttribute.cs
- MouseButton.cs
- HtmlTextViewAdapter.cs
- Tokenizer.cs
- ImageMap.cs
- PageParser.cs
- SortQuery.cs
- Queue.cs
- BrowserCapabilitiesCodeGenerator.cs
- TypefaceCollection.cs
- DiscoveryClientDocuments.cs
- PingOptions.cs
- BatchServiceHost.cs
- CollectionConverter.cs
- PackagePartCollection.cs
- CompositeTypefaceMetrics.cs
- SQLInt32Storage.cs
- HtmlInputImage.cs
- WebBrowsableAttribute.cs
- XPathNodeHelper.cs
- EncryptedPackage.cs
- HttpWrapper.cs
- CacheRequest.cs
- WsdlExporter.cs
- ServiceInfo.cs
- PolicyReader.cs
- LinkedResourceCollection.cs
- TabPanel.cs
- RegionData.cs
- ModuleBuilder.cs
- InstallerTypeAttribute.cs
- ToolStripDropDownClosingEventArgs.cs
- CssTextWriter.cs
- documentation.cs
- SetStateEventArgs.cs
- DBCommandBuilder.cs
- X509CertificateCollection.cs
- _NestedMultipleAsyncResult.cs
- WebFormsRootDesigner.cs
- LayoutTable.cs
- JsonMessageEncoderFactory.cs
- DesignRelation.cs
- ToolStripOverflowButton.cs
- NameValueSectionHandler.cs
- StructuredTypeEmitter.cs
- IdentifierCreationService.cs
- CheckBoxRenderer.cs
- TemplateManager.cs
- XmlSchemaType.cs
- PenCursorManager.cs
- PrintingPermission.cs
- ArrayExtension.cs
- StackSpiller.cs
- WeakHashtable.cs
- EmptyStringExpandableObjectConverter.cs
- HttpCapabilitiesEvaluator.cs
- HtmlWindow.cs
- SQLInt32Storage.cs
- BamlLocalizer.cs
- XmlIgnoreAttribute.cs
- LoadMessageLogger.cs
- SimpleTypeResolver.cs
- CommandDevice.cs
- WindowCollection.cs
- HistoryEventArgs.cs
- ClientRoleProvider.cs
- DataSourceHelper.cs
- TemplateXamlParser.cs
- FontWeightConverter.cs
- ScrollViewerAutomationPeer.cs
- SqlTypeSystemProvider.cs
- SymbolEqualComparer.cs
- FormsAuthenticationTicket.cs
- SamlSecurityTokenAuthenticator.cs
- UserControl.cs
- _ConnectOverlappedAsyncResult.cs
- MissingFieldException.cs
- TaskFormBase.cs
- Highlights.cs
- WizardDesigner.cs
- DictionarySectionHandler.cs
- SchemaImporterExtension.cs
- PathData.cs