Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / ApplicationServices / AuthenticatingEventArgs.cs / 1305376 / AuthenticatingEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.ApplicationServices { using System; using System.Web; 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TypeValidationEventArgs.cs
- TemplateControl.cs
- ResponseStream.cs
- DataGridTextColumn.cs
- BevelBitmapEffect.cs
- BuildManagerHost.cs
- SqlCacheDependencyDatabase.cs
- GridItemProviderWrapper.cs
- TypeKeyValue.cs
- HtmlFormWrapper.cs
- DesignTimeDataBinding.cs
- Parameter.cs
- DeviceContext2.cs
- SQLInt32.cs
- ProfileParameter.cs
- ChangeDirector.cs
- IBuiltInEvidence.cs
- ThaiBuddhistCalendar.cs
- OutputCacheProfile.cs
- XsltConvert.cs
- CriticalExceptions.cs
- TreeNodeClickEventArgs.cs
- TextTrailingWordEllipsis.cs
- XsltException.cs
- XPathNavigatorKeyComparer.cs
- SqlBulkCopy.cs
- TextTreeInsertElementUndoUnit.cs
- SchemaSetCompiler.cs
- PreviewPrintController.cs
- Debug.cs
- DataService.cs
- FieldReference.cs
- TableStyle.cs
- ProviderSettingsCollection.cs
- PageHandlerFactory.cs
- HMACSHA256.cs
- ResourceCategoryAttribute.cs
- SymmetricAlgorithm.cs
- ColorMatrix.cs
- XpsS0ValidatingLoader.cs
- TransformConverter.cs
- XamlNamespaceHelper.cs
- DataGridViewCellLinkedList.cs
- ValidationErrorCollection.cs
- EmbeddedMailObject.cs
- UInt32Storage.cs
- WindowsListViewItemCheckBox.cs
- DataIdProcessor.cs
- GroupBoxAutomationPeer.cs
- DeliveryRequirementsAttribute.cs
- FontNameEditor.cs
- DBCommand.cs
- HwndKeyboardInputProvider.cs
- RetrieveVirtualItemEventArgs.cs
- DiscardableAttribute.cs
- Helpers.cs
- TextBox.cs
- WSHttpSecurity.cs
- mactripleDES.cs
- SHA512.cs
- Signature.cs
- DoubleCollectionValueSerializer.cs
- Encoder.cs
- WindowsGraphicsCacheManager.cs
- ReadOnlyCollectionBase.cs
- OutArgument.cs
- XPathBinder.cs
- Point.cs
- FloatMinMaxAggregationOperator.cs
- UIElement3D.cs
- DocumentManager.cs
- SqlStream.cs
- SimpleFieldTemplateUserControl.cs
- ContactManager.cs
- ArrangedElementCollection.cs
- SerializationInfoEnumerator.cs
- HashCoreRequest.cs
- DBConnection.cs
- sqlstateclientmanager.cs
- DrawingState.cs
- ProcessHostMapPath.cs
- InputQueueChannelAcceptor.cs
- CompilationRelaxations.cs
- EditCommandColumn.cs
- Model3DGroup.cs
- ProtocolsConfiguration.cs
- TextElementCollection.cs
- HealthMonitoringSectionHelper.cs
- GridViewSortEventArgs.cs
- AdjustableArrowCap.cs
- PerformanceCounterManager.cs
- CharacterMetrics.cs
- RawContentTypeMapper.cs
- DataGridViewDataErrorEventArgs.cs
- RtfToken.cs
- SerializationStore.cs
- RightsManagementPermission.cs
- ClassDataContract.cs
- BamlMapTable.cs
- URL.cs