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
- LinqExpressionNormalizer.cs
- SmtpFailedRecipientException.cs
- SoapTypeAttribute.cs
- Drawing.cs
- FixUp.cs
- EdgeProfileValidation.cs
- DataObjectCopyingEventArgs.cs
- PathSegment.cs
- OperandQuery.cs
- HtmlHead.cs
- Action.cs
- OdbcConnectionStringbuilder.cs
- Image.cs
- Image.cs
- NavigatorOutput.cs
- QilGeneratorEnv.cs
- AppDomainFactory.cs
- RouteTable.cs
- AncillaryOps.cs
- _SSPIWrapper.cs
- Parser.cs
- BufferBuilder.cs
- KeyProperty.cs
- RootBrowserWindowProxy.cs
- _HelperAsyncResults.cs
- MatchingStyle.cs
- WebPartChrome.cs
- XmlJsonReader.cs
- SafeFileMappingHandle.cs
- Matrix.cs
- SerialPinChanges.cs
- NoResizeSelectionBorderGlyph.cs
- Bold.cs
- DetailsViewPageEventArgs.cs
- WebPartDisplayModeEventArgs.cs
- DataRowExtensions.cs
- ScriptIgnoreAttribute.cs
- InvokeHandlers.cs
- TraceFilter.cs
- TiffBitmapDecoder.cs
- CornerRadiusConverter.cs
- EventBuilder.cs
- ImageIndexConverter.cs
- SecurityImpersonationBehavior.cs
- MembershipValidatePasswordEventArgs.cs
- hresults.cs
- StringUtil.cs
- SystemResources.cs
- PermissionAttributes.cs
- SamlDoNotCacheCondition.cs
- GenerateDerivedKeyRequest.cs
- LogEntryHeaderDeserializer.cs
- DataGridParentRows.cs
- Encoder.cs
- ReachDocumentPageSerializerAsync.cs
- SoundPlayerAction.cs
- SaveWorkflowAsyncResult.cs
- HtmlInputImage.cs
- FlowDocumentPaginator.cs
- DefaultHttpHandler.cs
- RoleManagerEventArgs.cs
- StringBuilder.cs
- BitmapDecoder.cs
- SmtpNegotiateAuthenticationModule.cs
- XmlSchemaImporter.cs
- ComponentCommands.cs
- InplaceBitmapMetadataWriter.cs
- StatementContext.cs
- CompilerState.cs
- TimeoutHelper.cs
- EventLogPermissionEntryCollection.cs
- PlatformNotSupportedException.cs
- FilteredXmlReader.cs
- WorkflowNamespace.cs
- EntityAdapter.cs
- Globals.cs
- FixUpCollection.cs
- TextViewSelectionProcessor.cs
- ReverseInheritProperty.cs
- FontStretches.cs
- CryptoConfig.cs
- StaticExtensionConverter.cs
- NaturalLanguageHyphenator.cs
- Latin1Encoding.cs
- RuntimeHandles.cs
- PKCS1MaskGenerationMethod.cs
- _IPv6Address.cs
- FileClassifier.cs
- Style.cs
- RenderTargetBitmap.cs
- PnrpPermission.cs
- StringWriter.cs
- FlowDocument.cs
- ObjectDataSourceWizardForm.cs
- ByeOperation11AsyncResult.cs
- XmlSchemaCompilationSettings.cs
- DataGridrowEditEndingEventArgs.cs
- InheritablePropertyChangeInfo.cs
- DataError.cs
- PackageFilter.cs