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
- MDIClient.cs
- TextBox.cs
- QueryCoreOp.cs
- TableLayoutSettings.cs
- ObjectViewEntityCollectionData.cs
- TextContainer.cs
- XpsSerializationManager.cs
- WebPartUserCapability.cs
- Timer.cs
- documentsequencetextview.cs
- RowVisual.cs
- DataGridViewImageColumn.cs
- TextPointer.cs
- MembershipUser.cs
- HttpStreamFormatter.cs
- SByteStorage.cs
- ReplyChannelAcceptor.cs
- DataKey.cs
- HelpHtmlBuilder.cs
- SecurityContext.cs
- sqlser.cs
- WebPartDisplayMode.cs
- RadioButtonStandardAdapter.cs
- HttpMethodConstraint.cs
- Image.cs
- HMACSHA512.cs
- TemporaryBitmapFile.cs
- PolicyChain.cs
- PeerCustomResolverBindingElement.cs
- SqlStream.cs
- DateTimeParse.cs
- TypedReference.cs
- BufferedGraphicsContext.cs
- Int32Animation.cs
- DefaultSerializationProviderAttribute.cs
- HandlerMappingMemo.cs
- SHA256.cs
- StrokeRenderer.cs
- DBBindings.cs
- TransformerConfigurationWizardBase.cs
- _NegotiateClient.cs
- XmlSchemaDatatype.cs
- XomlSerializationHelpers.cs
- PackagingUtilities.cs
- TransactionContextManager.cs
- ReadOnlyKeyedCollection.cs
- ToolStripSplitStackLayout.cs
- ProcessStartInfo.cs
- AppModelKnownContentFactory.cs
- PersonalizableAttribute.cs
- New.cs
- VirtualPathData.cs
- SoapObjectReader.cs
- SingleSelectRootGridEntry.cs
- CodeDomSerializer.cs
- SqlUnionizer.cs
- FontSizeConverter.cs
- NativeObjectSecurity.cs
- Stack.cs
- EditingScopeUndoUnit.cs
- DataTableClearEvent.cs
- WebPartMenuStyle.cs
- CompilerTypeWithParams.cs
- BadImageFormatException.cs
- XmlWellformedWriterHelpers.cs
- SettingsPropertyNotFoundException.cs
- GeneralTransform3D.cs
- ObjectListField.cs
- HijriCalendar.cs
- Matrix.cs
- SubMenuStyle.cs
- CollectionViewGroup.cs
- XmlSignificantWhitespace.cs
- XmlElementCollection.cs
- SchemaHelper.cs
- PointAnimationBase.cs
- SafeArchiveContext.cs
- TableRow.cs
- SecurityContext.cs
- Animatable.cs
- TemplateControl.cs
- Brush.cs
- AttributeUsageAttribute.cs
- ILGenerator.cs
- SimpleBitVector32.cs
- RbTree.cs
- XAMLParseException.cs
- _KerberosClient.cs
- TextElementCollectionHelper.cs
- CustomError.cs
- RadioButtonAutomationPeer.cs
- CqlParser.cs
- Interlocked.cs
- Registry.cs
- ArgIterator.cs
- CoTaskMemSafeHandle.cs
- SessionSwitchEventArgs.cs
- GridViewRowPresenterBase.cs
- WindowsAuthenticationModule.cs
- Operator.cs