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
- HMACMD5.cs
- DrawingAttributesDefaultValueFactory.cs
- UnmanagedMarshal.cs
- VerificationAttribute.cs
- OleDbTransaction.cs
- BinaryCommonClasses.cs
- LookupBindingPropertiesAttribute.cs
- ActiveXHelper.cs
- ColorContextHelper.cs
- LocalFileSettingsProvider.cs
- CookielessHelper.cs
- TextTreeInsertUndoUnit.cs
- SortedSet.cs
- IgnoreSectionHandler.cs
- TreeNodeCollectionEditorDialog.cs
- shaperfactory.cs
- UnitySerializationHolder.cs
- FixedSOMFixedBlock.cs
- NameValueFileSectionHandler.cs
- TreeView.cs
- HtmlWindow.cs
- SessionEndedEventArgs.cs
- ListViewGroupItemCollection.cs
- QilStrConcatenator.cs
- ScrollItemPattern.cs
- SafeEventLogReadHandle.cs
- DefaultAssemblyResolver.cs
- DesignerLoader.cs
- PngBitmapDecoder.cs
- Vector3D.cs
- SplineKeyFrames.cs
- BasePattern.cs
- ControlCommandSet.cs
- DataGridTablesFactory.cs
- TrackPoint.cs
- ClockController.cs
- NonParentingControl.cs
- MethodBuilder.cs
- SocketException.cs
- WinEventTracker.cs
- UnicastIPAddressInformationCollection.cs
- ToolBarButton.cs
- DifferencingCollection.cs
- HttpStreamFormatter.cs
- shaperfactoryquerycacheentry.cs
- Environment.cs
- Localizer.cs
- SoapTypeAttribute.cs
- TextElement.cs
- KeyboardDevice.cs
- TrustManagerPromptUI.cs
- StoryFragments.cs
- RenderTargetBitmap.cs
- PeerApplication.cs
- ServiceHostFactory.cs
- Events.cs
- TimeZone.cs
- FieldNameLookup.cs
- PathData.cs
- BreakRecordTable.cs
- MobilePage.cs
- UTF8Encoding.cs
- CodeEntryPointMethod.cs
- PipeStream.cs
- nulltextcontainer.cs
- HitTestFilterBehavior.cs
- ConfigXmlElement.cs
- SqlUnionizer.cs
- PropertyGeneratedEventArgs.cs
- VScrollBar.cs
- ListDataBindEventArgs.cs
- SoapEnumAttribute.cs
- SQLBinary.cs
- JapaneseLunisolarCalendar.cs
- LogicalExpr.cs
- XmlDataSourceNodeDescriptor.cs
- ConsoleTraceListener.cs
- VersionPair.cs
- ReversePositionQuery.cs
- _KerberosClient.cs
- DetailsViewModeEventArgs.cs
- DebugHandleTracker.cs
- WriteLine.cs
- FixedHighlight.cs
- BackgroundFormatInfo.cs
- XamlParser.cs
- BindingUtils.cs
- GroupPartitionExpr.cs
- WorkflowRuntimeBehavior.cs
- StringSorter.cs
- XPathNodePointer.cs
- JavaScriptString.cs
- ConvertersCollection.cs
- Int16Storage.cs
- SqlClientPermission.cs
- ImageAttributes.cs
- GenericTypeParameterBuilder.cs
- QueryInterceptorAttribute.cs
- PagesSection.cs
- CustomErrorsSectionWrapper.cs