Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / ClientServices / Providers / ClientFormsAuthenticationCredentials.cs / 1305376 / 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
- OleDbConnectionPoolGroupProviderInfo.cs
- ClientConfigPaths.cs
- PageCatalogPart.cs
- DataSourceControlBuilder.cs
- MetadataItem_Static.cs
- SafeArrayRankMismatchException.cs
- PenLineCapValidation.cs
- Errors.cs
- LineGeometry.cs
- SingleResultAttribute.cs
- NavigateUrlConverter.cs
- StateDesigner.Helpers.cs
- DBBindings.cs
- CollectionViewGroupInternal.cs
- RectangleHotSpot.cs
- TextBoxDesigner.cs
- DurationConverter.cs
- RelationshipType.cs
- MouseOverProperty.cs
- webclient.cs
- InputDevice.cs
- UserControlAutomationPeer.cs
- RowParagraph.cs
- Underline.cs
- PageAsyncTaskManager.cs
- PointValueSerializer.cs
- PersonalizationAdministration.cs
- ProxyFragment.cs
- SoapTransportImporter.cs
- FrameworkElementAutomationPeer.cs
- dsa.cs
- sqlpipe.cs
- DataGridViewCellValueEventArgs.cs
- FastEncoder.cs
- ServerIdentity.cs
- FormParameter.cs
- TransformerInfoCollection.cs
- SqlNode.cs
- KeyEvent.cs
- DbCommandTree.cs
- ScaleTransform3D.cs
- ModifierKeysConverter.cs
- XmlCharCheckingWriter.cs
- ToolStripMenuItem.cs
- SpellCheck.cs
- PropertyExpression.cs
- SchemaTableColumn.cs
- ConsoleTraceListener.cs
- FrameworkElementFactoryMarkupObject.cs
- WindowsRegion.cs
- XmlReader.cs
- PropertyEntry.cs
- DbDataReader.cs
- MasterPage.cs
- X509CertificateValidator.cs
- OdbcInfoMessageEvent.cs
- ExceptionTrace.cs
- ObjectKeyFrameCollection.cs
- AccessControlList.cs
- _ConnectStream.cs
- GenericTypeParameterBuilder.cs
- ProgressBar.cs
- StylusCollection.cs
- TemplatedMailWebEventProvider.cs
- CommentAction.cs
- TextFormatterImp.cs
- BinaryFormatterSinks.cs
- TextSelectionHighlightLayer.cs
- XmlReader.cs
- SyndicationElementExtensionCollection.cs
- PropertyRecord.cs
- IRCollection.cs
- HyperLinkDesigner.cs
- WorkflowViewService.cs
- FormCollection.cs
- BrowserCapabilitiesFactory.cs
- PlainXmlSerializer.cs
- ThicknessConverter.cs
- QilFunction.cs
- CollectionViewSource.cs
- HijriCalendar.cs
- DocumentDesigner.cs
- ImageDrawing.cs
- PropertyDescriptorCollection.cs
- JapaneseLunisolarCalendar.cs
- CodeTypeDeclaration.cs
- GradientStopCollection.cs
- ZipIOLocalFileHeader.cs
- namescope.cs
- Point3DKeyFrameCollection.cs
- CodeMethodInvokeExpression.cs
- ECDiffieHellmanPublicKey.cs
- HttpServerVarsCollection.cs
- SaveLedgerEntryRequest.cs
- TrackingServices.cs
- XmlComplianceUtil.cs
- ButtonColumn.cs
- ProvidersHelper.cs
- SubpageParagraph.cs
- Point4DValueSerializer.cs