Code:
/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UserUseLicenseDictionaryLoader.cs
- TemplateBuilder.cs
- PassportAuthenticationEventArgs.cs
- SpotLight.cs
- MostlySingletonList.cs
- FixUp.cs
- UrlPath.cs
- StylusLogic.cs
- SortableBindingList.cs
- HttpFileCollection.cs
- BamlLocalizabilityResolver.cs
- ComponentEvent.cs
- _AuthenticationState.cs
- DragDropManager.cs
- FormatConvertedBitmap.cs
- GenerateTemporaryTargetAssembly.cs
- DBPropSet.cs
- FacetDescription.cs
- Crypto.cs
- BindingWorker.cs
- CacheChildrenQuery.cs
- DisposableCollectionWrapper.cs
- ReadOnlyHierarchicalDataSource.cs
- XmlMemberMapping.cs
- BevelBitmapEffect.cs
- LinearGradientBrush.cs
- CoTaskMemHandle.cs
- StringConcat.cs
- BitFlagsGenerator.cs
- AppModelKnownContentFactory.cs
- WindowsGraphicsWrapper.cs
- SystemColorTracker.cs
- RotateTransform.cs
- FontWeightConverter.cs
- RNGCryptoServiceProvider.cs
- RestHandler.cs
- XmlNamedNodeMap.cs
- ImageSourceConverter.cs
- HashCryptoHandle.cs
- ProgressChangedEventArgs.cs
- PageCatalogPart.cs
- PhonemeEventArgs.cs
- SqlParameterizer.cs
- ExcludeFromCodeCoverageAttribute.cs
- MemoryPressure.cs
- ObfuscationAttribute.cs
- OpenTypeCommon.cs
- ReadOnlyHierarchicalDataSourceView.cs
- ControlBuilderAttribute.cs
- Compiler.cs
- ResXResourceReader.cs
- InvokeMethodActivity.cs
- GC.cs
- OdbcConnectionHandle.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- RoleService.cs
- SqlDataSourceView.cs
- Win32KeyboardDevice.cs
- ToolStripItemRenderEventArgs.cs
- ToolTipService.cs
- InternalBase.cs
- tooltip.cs
- StylusDevice.cs
- ModuleBuilder.cs
- PermissionToken.cs
- CacheChildrenQuery.cs
- InfoCardCryptoHelper.cs
- UnionCodeGroup.cs
- FacetChecker.cs
- XMLDiffLoader.cs
- HitTestFilterBehavior.cs
- RotateTransform.cs
- ParallelTimeline.cs
- StringResourceManager.cs
- TypeSemantics.cs
- HostingEnvironmentException.cs
- MapPathBasedVirtualPathProvider.cs
- Selection.cs
- DefaultIfEmptyQueryOperator.cs
- ValidationUtility.cs
- ValueHandle.cs
- BrushConverter.cs
- Triangle.cs
- OrderedHashRepartitionStream.cs
- DataGridViewDesigner.cs
- PointF.cs
- HtmlUtf8RawTextWriter.cs
- ArglessEventHandlerProxy.cs
- ProfileBuildProvider.cs
- DoubleKeyFrameCollection.cs
- SafeRightsManagementEnvironmentHandle.cs
- OledbConnectionStringbuilder.cs
- OutputCacheSettings.cs
- XPathMultyIterator.cs
- ListDictionary.cs
- FigureParagraph.cs
- ParameterModifier.cs
- ElementInit.cs
- UnmanagedMemoryAccessor.cs
- ListBoxItemWrapperAutomationPeer.cs