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
- DataGridViewTextBoxCell.cs
- StringUtil.cs
- BackgroundFormatInfo.cs
- DataBinder.cs
- BamlVersionHeader.cs
- StreamReader.cs
- SHA512Managed.cs
- BrowserCapabilitiesFactory.cs
- DbLambda.cs
- TranslateTransform.cs
- XDeferredAxisSource.cs
- TextBoxAutoCompleteSourceConverter.cs
- AdRotator.cs
- DBSchemaRow.cs
- UserControl.cs
- StringToken.cs
- ControlAdapter.cs
- HttpProtocolImporter.cs
- COM2PictureConverter.cs
- ViewRendering.cs
- AttributeEmitter.cs
- DbConvert.cs
- ServerProtocol.cs
- SequentialWorkflowRootDesigner.cs
- DispatcherTimer.cs
- MDIClient.cs
- SortFieldComparer.cs
- SyndicationElementExtensionCollection.cs
- AdapterSwitches.cs
- ArgumentsParser.cs
- CounterSampleCalculator.cs
- sqlinternaltransaction.cs
- FieldAccessException.cs
- _CommandStream.cs
- WebPartConnectionsEventArgs.cs
- HttpInputStream.cs
- TextFormatter.cs
- XmlCharType.cs
- X509Certificate2Collection.cs
- Int16.cs
- XPathSingletonIterator.cs
- PeerInvitationResponse.cs
- WorkflowRuntimeServiceElement.cs
- ReadOnlyDictionary.cs
- EventMap.cs
- CallTemplateAction.cs
- HTMLTagNameToTypeMapper.cs
- RemotingException.cs
- HandleCollector.cs
- IntegerFacetDescriptionElement.cs
- COM2Enum.cs
- CountdownEvent.cs
- Delegate.cs
- SvcFileManager.cs
- DotAtomReader.cs
- CapiHashAlgorithm.cs
- MarkupProperty.cs
- XmlTextReaderImpl.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- ErrorProvider.cs
- MessageHeaderDescription.cs
- MemberHolder.cs
- InstanceHandleConflictException.cs
- AmbiguousMatchException.cs
- FontFamily.cs
- DefaultValueTypeConverter.cs
- BindingGroup.cs
- BitmapCacheBrush.cs
- DateTimeStorage.cs
- StatusBar.cs
- AssemblyNameProxy.cs
- AppDomainGrammarProxy.cs
- JavaScriptSerializer.cs
- ColorConvertedBitmapExtension.cs
- GridEntry.cs
- NativeCppClassAttribute.cs
- OdbcFactory.cs
- Win32PrintDialog.cs
- Pkcs9Attribute.cs
- CustomCategoryAttribute.cs
- XmlComplianceUtil.cs
- DataServiceHostFactory.cs
- Translator.cs
- XmlSchemaCollection.cs
- WebBrowserSiteBase.cs
- SettingsPropertyCollection.cs
- Pkcs7Signer.cs
- ZipIOLocalFileBlock.cs
- UriTemplateTableMatchCandidate.cs
- PassportAuthenticationModule.cs
- HideDisabledControlAdapter.cs
- Vector3DIndependentAnimationStorage.cs
- autovalidator.cs
- StaticResourceExtension.cs
- AsyncDataRequest.cs
- SynchronizationScope.cs
- PermissionAttributes.cs
- RadialGradientBrush.cs
- TextDecoration.cs
- SingleStorage.cs