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
- ConfigsHelper.cs
- HeaderedItemsControl.cs
- ZipIOLocalFileHeader.cs
- BuildProviderCollection.cs
- TaskFileService.cs
- CacheEntry.cs
- CallSiteHelpers.cs
- DateTimeUtil.cs
- ResourceProviderFactory.cs
- GradientSpreadMethodValidation.cs
- FixedSOMSemanticBox.cs
- SystemTcpConnection.cs
- MenuAutomationPeer.cs
- FunctionOverloadResolver.cs
- ManipulationStartingEventArgs.cs
- XsltConvert.cs
- SourceFileBuildProvider.cs
- PersonalizationAdministration.cs
- _IPv6Address.cs
- FastEncoderWindow.cs
- HttpProcessUtility.cs
- TextParentUndoUnit.cs
- ImplicitInputBrush.cs
- SafeSecurityHandles.cs
- PropertyCollection.cs
- FlowDecisionDesigner.xaml.cs
- TextReturnReader.cs
- AppDomainAttributes.cs
- JsonFormatReaderGenerator.cs
- DataGridToolTip.cs
- DataReaderContainer.cs
- DirectoryInfo.cs
- ResourcePermissionBase.cs
- ReadOnlyPermissionSet.cs
- Ports.cs
- WeakReference.cs
- ParseChildrenAsPropertiesAttribute.cs
- IdentitySection.cs
- OptimalTextSource.cs
- Label.cs
- EpmTargetTree.cs
- ConfigurationElement.cs
- XmlNotation.cs
- TextEvent.cs
- ChtmlCommandAdapter.cs
- FlagsAttribute.cs
- TransformPattern.cs
- FacetEnabledSchemaElement.cs
- DesignerCapabilities.cs
- ArgumentException.cs
- arc.cs
- RectKeyFrameCollection.cs
- FileDialog.cs
- Parsers.cs
- DataGridViewSortCompareEventArgs.cs
- TableLayoutStyleCollection.cs
- MessageProperties.cs
- Calendar.cs
- ViewStateModeByIdAttribute.cs
- GPPOINTF.cs
- CompareInfo.cs
- RegexEditorDialog.cs
- ConstNode.cs
- TerminateSequenceResponse.cs
- MulticastIPAddressInformationCollection.cs
- SystemInformation.cs
- EditorAttributeInfo.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- MissingFieldException.cs
- Select.cs
- SimpleHandlerBuildProvider.cs
- HttpClientCertificate.cs
- CellPartitioner.cs
- ConfigurationSettings.cs
- TextRangeEditLists.cs
- RoutedEvent.cs
- _MultipleConnectAsync.cs
- SemanticBasicElement.cs
- DrawingServices.cs
- CaseInsensitiveComparer.cs
- ParallelTimeline.cs
- ParagraphVisual.cs
- QilTernary.cs
- SelectionItemPattern.cs
- SamlSubject.cs
- DynamicValueConverter.cs
- RelationshipEndCollection.cs
- DSGeneratorProblem.cs
- StdValidatorsAndConverters.cs
- TextRenderer.cs
- ReadOnlyDictionary.cs
- KeyedCollection.cs
- SqlConnectionStringBuilder.cs
- Stopwatch.cs
- ExpressionBinding.cs
- UnsafeNativeMethods.cs
- Repeater.cs
- IriParsingElement.cs
- CriticalHandle.cs
- ItemsControlAutomationPeer.cs