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
- ContentFilePart.cs
- LogicalCallContext.cs
- ZipFileInfoCollection.cs
- SafeThreadHandle.cs
- PropertyPath.cs
- PenContexts.cs
- XmlSchemaSimpleTypeList.cs
- X509SecurityToken.cs
- InvalidProgramException.cs
- ApplicationManager.cs
- XPathException.cs
- SmiXetterAccessMap.cs
- X509RawDataKeyIdentifierClause.cs
- ArgumentValidation.cs
- TabItem.cs
- JoinGraph.cs
- Expander.cs
- TextDecorationCollection.cs
- EventSinkActivityDesigner.cs
- LinkLabelLinkClickedEvent.cs
- XmlSchemaGroup.cs
- SqlMultiplexer.cs
- StreamReader.cs
- ReferenceEqualityComparer.cs
- AuthorizationRule.cs
- WebHttpBehavior.cs
- PropertyItem.cs
- CommandHelpers.cs
- StructuredType.cs
- ComponentChangedEvent.cs
- DXD.cs
- DependencyObjectType.cs
- ScrollableControl.cs
- SqlDataSourceConfigureFilterForm.cs
- CommunicationException.cs
- PerformanceCounterManager.cs
- TextFragmentEngine.cs
- PenContext.cs
- webproxy.cs
- IndexingContentUnit.cs
- PropertyValue.cs
- DomainUpDown.cs
- ParserExtension.cs
- CompiledRegexRunner.cs
- MultiAsyncResult.cs
- TreeView.cs
- HandlerWithFactory.cs
- XPathDocument.cs
- DataGridViewTextBoxEditingControl.cs
- GraphicsPathIterator.cs
- RadialGradientBrush.cs
- RangeBaseAutomationPeer.cs
- PlatformNotSupportedException.cs
- EndpointInfoCollection.cs
- XDRSchema.cs
- TimeoutException.cs
- ListItemsPage.cs
- UnsafeNativeMethodsMilCoreApi.cs
- TdsParserSessionPool.cs
- IPEndPoint.cs
- CacheManager.cs
- SmtpSection.cs
- _KerberosClient.cs
- BitmapFrameEncode.cs
- DataGridViewControlCollection.cs
- Compilation.cs
- DateTimePicker.cs
- HtmlTernaryTree.cs
- SByteStorage.cs
- ToolStripTextBox.cs
- PlanCompilerUtil.cs
- FileIOPermission.cs
- CollectionConverter.cs
- DoubleUtil.cs
- SqlProcedureAttribute.cs
- XmlSchemaType.cs
- SimpleTypesSurrogate.cs
- SafeRightsManagementEnvironmentHandle.cs
- SynchronizationValidator.cs
- MethodImplAttribute.cs
- Path.cs
- _UriTypeConverter.cs
- SendContent.cs
- CaseInsensitiveHashCodeProvider.cs
- EventPropertyMap.cs
- MultiPartWriter.cs
- FontWeight.cs
- MailWriter.cs
- ListCardsInFileRequest.cs
- QilCloneVisitor.cs
- SimpleHandlerBuildProvider.cs
- CodeCompiler.cs
- QueryTask.cs
- ComponentResourceKeyConverter.cs
- XamlUtilities.cs
- _NetworkingPerfCounters.cs
- ShaderEffect.cs
- ProgressBarHighlightConverter.cs
- MatrixAnimationUsingKeyFrames.cs
- XmlSchemaFacet.cs