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
- Int32CollectionConverter.cs
- QuaternionAnimationBase.cs
- IisTraceWebEventProvider.cs
- WindowsToolbar.cs
- ConvertEvent.cs
- AttributeUsageAttribute.cs
- ListViewEditEventArgs.cs
- HitTestWithPointDrawingContextWalker.cs
- TdsParser.cs
- HtmlLink.cs
- InputBuffer.cs
- StorageTypeMapping.cs
- HelpKeywordAttribute.cs
- BindingContext.cs
- StringCollectionMarkupSerializer.cs
- Part.cs
- PageParser.cs
- WindowsFormsSynchronizationContext.cs
- HttpCookiesSection.cs
- FixedSOMFixedBlock.cs
- MdiWindowListItemConverter.cs
- SelectQueryOperator.cs
- ContainerControl.cs
- DataGridViewRowPostPaintEventArgs.cs
- TaiwanCalendar.cs
- AppDomainManager.cs
- RichTextBox.cs
- SchemaAttDef.cs
- DirectoryNotFoundException.cs
- ImmutableObjectAttribute.cs
- XmlLinkedNode.cs
- BamlBinaryWriter.cs
- securestring.cs
- CoreSwitches.cs
- DocumentViewerBase.cs
- ScriptRegistrationManager.cs
- NetStream.cs
- _AuthenticationState.cs
- GregorianCalendarHelper.cs
- OdbcFactory.cs
- ComboBoxItem.cs
- Size.cs
- TextChange.cs
- StrongNameMembershipCondition.cs
- Tool.cs
- ResourceCodeDomSerializer.cs
- RuntimeConfigLKG.cs
- BitmapPalettes.cs
- ApplicationId.cs
- ModifyActivitiesPropertyDescriptor.cs
- SystemIPInterfaceProperties.cs
- ToolboxItemFilterAttribute.cs
- OdbcEnvironment.cs
- TextParentUndoUnit.cs
- XmlSchemaException.cs
- Interlocked.cs
- RubberbandSelector.cs
- WpfWebRequestHelper.cs
- TreeNode.cs
- BorderGapMaskConverter.cs
- OdbcCommand.cs
- DBSqlParserTableCollection.cs
- WindowsTokenRoleProvider.cs
- DataStorage.cs
- WCFModelStrings.Designer.cs
- WindowProviderWrapper.cs
- ThaiBuddhistCalendar.cs
- XPathNavigatorReader.cs
- ObjectSpanRewriter.cs
- ColorTransform.cs
- OrderingExpression.cs
- precedingquery.cs
- FileIOPermission.cs
- HtmlTextArea.cs
- SamlAssertionKeyIdentifierClause.cs
- ScriptReferenceEventArgs.cs
- ContentDisposition.cs
- WsatEtwTraceListener.cs
- OperationPickerDialog.designer.cs
- ImageSourceConverter.cs
- ToolStripCustomTypeDescriptor.cs
- ConnectionOrientedTransportChannelListener.cs
- PathData.cs
- GacUtil.cs
- SqlTriggerAttribute.cs
- FullTextBreakpoint.cs
- Registry.cs
- ProcessStartInfo.cs
- AccessDataSourceView.cs
- SafeNativeMethods.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- HMAC.cs
- DefaultMemberAttribute.cs
- ImportCatalogPart.cs
- XPathArrayIterator.cs
- QueryActivatableWorkflowsCommand.cs
- DataSourceCacheDurationConverter.cs
- ConfigurationManagerInternalFactory.cs
- XmlHierarchicalEnumerable.cs
- CheckoutException.cs