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
- ApplicationDirectoryMembershipCondition.cs
- HtmlHead.cs
- DeferredRunTextReference.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- SafeCryptContextHandle.cs
- WsatStrings.cs
- ProcessHostMapPath.cs
- FlowDocumentPageViewerAutomationPeer.cs
- DateTimeOffsetStorage.cs
- Grid.cs
- InstanceKeyView.cs
- UrlAuthorizationModule.cs
- ListViewCommandEventArgs.cs
- BamlRecordReader.cs
- EntityDataSourceWrapper.cs
- AuditLog.cs
- AnimatedTypeHelpers.cs
- SafeNativeMethods.cs
- InputScope.cs
- Panel.cs
- NavigationPropertyEmitter.cs
- Expression.cs
- ToolStripItemRenderEventArgs.cs
- FixedSOMPage.cs
- DocumentationServerProtocol.cs
- DragEvent.cs
- UriTemplateClientFormatter.cs
- OleDbException.cs
- CalendarAutomationPeer.cs
- WebHttpBinding.cs
- GPStream.cs
- PersonalizablePropertyEntry.cs
- WebPartMinimizeVerb.cs
- BindableAttribute.cs
- AssociationTypeEmitter.cs
- MenuTracker.cs
- PeerNameRecordCollection.cs
- ExtensionQuery.cs
- Facet.cs
- XmlNotation.cs
- ZoneIdentityPermission.cs
- XPathNodeHelper.cs
- MetadataUtilsSmi.cs
- XmlWriter.cs
- Composition.cs
- TemplateBindingExtensionConverter.cs
- RegexInterpreter.cs
- XNodeNavigator.cs
- GCHandleCookieTable.cs
- XmlCharCheckingReader.cs
- WindowsSolidBrush.cs
- ButtonColumn.cs
- DrawListViewSubItemEventArgs.cs
- StreamInfo.cs
- ZipIOBlockManager.cs
- DisposableCollectionWrapper.cs
- DataGridViewCellCollection.cs
- RegionData.cs
- FailedToStartupUIException.cs
- XmlAtomicValue.cs
- HttpClientCertificate.cs
- GlobalizationSection.cs
- RunClient.cs
- ExeContext.cs
- DataGridCell.cs
- XhtmlBasicValidatorAdapter.cs
- OdbcTransaction.cs
- BooleanFunctions.cs
- EntitySqlQueryBuilder.cs
- SoapAttributeAttribute.cs
- TextViewSelectionProcessor.cs
- MruCache.cs
- ContractDescription.cs
- ActivityDesigner.cs
- ReferenceConverter.cs
- updateconfighost.cs
- ItemsControlAutomationPeer.cs
- WinFormsComponentEditor.cs
- SqlError.cs
- DefaultMemberAttribute.cs
- Math.cs
- XmlSchemaNotation.cs
- dataobject.cs
- ControlCollection.cs
- SourceFileInfo.cs
- ManagedCodeMarkers.cs
- XslNumber.cs
- _SslStream.cs
- _SpnDictionary.cs
- ButtonBaseAdapter.cs
- TextParagraphProperties.cs
- X509Utils.cs
- UTF32Encoding.cs
- Module.cs
- PropertyPathWorker.cs
- MessageHeaderAttribute.cs
- MetaColumn.cs
- EmbeddedMailObject.cs
- TreeViewEvent.cs
- DataBinder.cs