Code:
/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / ndp / fx / src / xsp / System / Web / Extensions / ApplicationServices / AuthenticatingEventArgs.cs / 1 / AuthenticatingEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.ApplicationServices { using System; using System.Security.Permissions; using System.Web; [ AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal), AspNetHostingPermission(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal) ] public class AuthenticatingEventArgs : EventArgs { private bool _authenticated; public bool Authenticated { get { return _authenticated; } set { _authenticated = value; } } private bool _authenticationIsComplete; public bool AuthenticationIsComplete { get { return _authenticationIsComplete; } set { _authenticationIsComplete = value; } } private string _userName; public string UserName { get { return _userName; } } private string _password; public string Password { get { return _password; } } private string _customCredential; public string CustomCredential { get { return _customCredential; } } internal AuthenticatingEventArgs(string username, string password, string customCredential) { _authenticated = false; _authenticationIsComplete = false; _userName = username; _password = password; _customCredential = customCredential; } //hiding default constructor private AuthenticatingEventArgs() { } } } // 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
- _ContextAwareResult.cs
- XPathNodePointer.cs
- IsolatedStorageFileStream.cs
- StickyNoteAnnotations.cs
- FastPropertyAccessor.cs
- DbProviderFactories.cs
- WSHttpBindingElement.cs
- Crypto.cs
- DataSvcMapFileSerializer.cs
- GridViewRowPresenter.cs
- MsmqInputChannelListener.cs
- HttpCookieCollection.cs
- InstalledFontCollection.cs
- InvalidFilterCriteriaException.cs
- QfeChecker.cs
- BitConverter.cs
- Pens.cs
- RegexParser.cs
- UInt16Converter.cs
- XmlIlTypeHelper.cs
- ClaimSet.cs
- LayoutManager.cs
- LateBoundBitmapDecoder.cs
- ListViewCommandEventArgs.cs
- EmptyImpersonationContext.cs
- RowTypeElement.cs
- Logging.cs
- ExpandedWrapper.cs
- KnownTypesProvider.cs
- PersonalizationProviderCollection.cs
- SizeAnimationUsingKeyFrames.cs
- DPCustomTypeDescriptor.cs
- ColumnClickEvent.cs
- DataGridViewRowPrePaintEventArgs.cs
- UnmanagedMemoryStream.cs
- OdbcEnvironment.cs
- Table.cs
- EdmPropertyAttribute.cs
- ObjRef.cs
- Point3DKeyFrameCollection.cs
- TokenBasedSetEnumerator.cs
- IndexedGlyphRun.cs
- ReadonlyMessageFilter.cs
- PkcsUtils.cs
- ReadWriteObjectLock.cs
- Lease.cs
- LinkArea.cs
- ObjectManager.cs
- PKCS1MaskGenerationMethod.cs
- ErrorHandlerFaultInfo.cs
- MonthCalendarDesigner.cs
- Image.cs
- Item.cs
- SqlCacheDependencySection.cs
- XpsDigitalSignature.cs
- Sorting.cs
- TypeExtensionSerializer.cs
- UnicastIPAddressInformationCollection.cs
- LinearGradientBrush.cs
- StaticDataManager.cs
- KeyGestureValueSerializer.cs
- TableCellAutomationPeer.cs
- SingleAnimation.cs
- SimpleModelProvider.cs
- DropDownList.cs
- ProvideValueServiceProvider.cs
- SessionViewState.cs
- SHA512Managed.cs
- CompoundFileIOPermission.cs
- ClientConfigurationHost.cs
- MarshalDirectiveException.cs
- UpDownBaseDesigner.cs
- Serializer.cs
- HwndMouseInputProvider.cs
- TabItem.cs
- PropertyGridEditorPart.cs
- Point3D.cs
- ProfileParameter.cs
- SqlDependency.cs
- SoapConverter.cs
- CounterSampleCalculator.cs
- InvalidWMPVersionException.cs
- DBSchemaRow.cs
- HtmlTableRowCollection.cs
- HttpCacheVary.cs
- BooleanStorage.cs
- XmlSerializationWriter.cs
- DefaultCommandConverter.cs
- _Events.cs
- ToolStripItemClickedEventArgs.cs
- DrawingImage.cs
- NamedPipeProcessProtocolHandler.cs
- GridItemCollection.cs
- Range.cs
- AssemblyCache.cs
- COAUTHIDENTITY.cs
- HashCoreRequest.cs
- Vector3DValueSerializer.cs
- ToolZone.cs
- AuthenticatingEventArgs.cs