Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / 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. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataGridViewSelectedColumnCollection.cs
- FlowNode.cs
- ProcessStartInfo.cs
- Privilege.cs
- CustomAttribute.cs
- MethodMessage.cs
- FigureParagraph.cs
- ServiceHttpHandlerFactory.cs
- XmlSchemaAttributeGroup.cs
- RemoveStoryboard.cs
- HostSecurityManager.cs
- CodeTypeOfExpression.cs
- EllipseGeometry.cs
- entityreference_tresulttype.cs
- CorrelationQueryBehavior.cs
- ListenDesigner.cs
- ArraySubsetEnumerator.cs
- Button.cs
- ActivityDefaults.cs
- Control.cs
- BindingExpressionBase.cs
- ViewgenContext.cs
- WindowsToolbarItemAsMenuItem.cs
- InvalidEnumArgumentException.cs
- UdpDiscoveryEndpoint.cs
- DelegatingConfigHost.cs
- SqlFormatter.cs
- DynamicRendererThreadManager.cs
- TTSEngineTypes.cs
- ReadOnlyObservableCollection.cs
- HttpModuleAction.cs
- FilterQueryOptionExpression.cs
- BitmapVisualManager.cs
- XsltContext.cs
- AssertFilter.cs
- StylusShape.cs
- SmtpReplyReaderFactory.cs
- CodeDomComponentSerializationService.cs
- QilVisitor.cs
- AppSettingsReader.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- Win32NamedPipes.cs
- DataTemplateSelector.cs
- JsonWriterDelegator.cs
- DesignerSerializerAttribute.cs
- PerformanceCounterPermissionEntry.cs
- XmlMtomWriter.cs
- ReadWriteSpinLock.cs
- SafeFreeMibTable.cs
- ListViewPagedDataSource.cs
- HostedHttpTransportManager.cs
- ObjectDataSourceFilteringEventArgs.cs
- MessageQueueConverter.cs
- XmlSchemaInfo.cs
- IgnoreSectionHandler.cs
- NameValueConfigurationElement.cs
- Int16AnimationUsingKeyFrames.cs
- XmlException.cs
- SafeNativeHandle.cs
- TouchDevice.cs
- RectAnimationUsingKeyFrames.cs
- FixedSOMTableCell.cs
- ListControl.cs
- AnnotationResourceChangedEventArgs.cs
- SecurityPermission.cs
- TaiwanLunisolarCalendar.cs
- TracedNativeMethods.cs
- TableStyle.cs
- ServiceNotStartedException.cs
- XmlUnspecifiedAttribute.cs
- OneOf.cs
- MILUtilities.cs
- StringExpressionSet.cs
- XmlTextEncoder.cs
- TdsParserHelperClasses.cs
- selecteditemcollection.cs
- Crc32Helper.cs
- WebPartConnectionsDisconnectVerb.cs
- GeneratedCodeAttribute.cs
- ThicknessKeyFrameCollection.cs
- CodePageEncoding.cs
- OuterGlowBitmapEffect.cs
- CustomAttributeBuilder.cs
- SortAction.cs
- CodeAccessSecurityEngine.cs
- WebPartEditorCancelVerb.cs
- GB18030Encoding.cs
- SpeechSeg.cs
- Color.cs
- ContentPosition.cs
- SpecialFolderEnumConverter.cs
- Ref.cs
- SmiGettersStream.cs
- TraceEventCache.cs
- BaseParaClient.cs
- SoapAttributeOverrides.cs
- DictionaryKeyPropertyAttribute.cs
- LabelLiteral.cs
- MimeTypeAttribute.cs
- ZipIOLocalFileDataDescriptor.cs