Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / AuthenticateEventArgs.cs / 1 / AuthenticateEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class AuthenticateEventArgs : EventArgs { private bool _authenticated; public AuthenticateEventArgs() : this(false) { } public AuthenticateEventArgs(bool authenticated) { _authenticated = authenticated; } ////// Gets or sets the success of the authentication attempt. Would be set by /// custom authentication logic in the Login.Authenticate event handler. /// public bool Authenticated { get { return _authenticated; } set { _authenticated = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class AuthenticateEventArgs : EventArgs { private bool _authenticated; public AuthenticateEventArgs() : this(false) { } public AuthenticateEventArgs(bool authenticated) { _authenticated = authenticated; } ////// Gets or sets the success of the authentication attempt. Would be set by /// custom authentication logic in the Login.Authenticate event handler. /// public bool Authenticated { get { return _authenticated; } set { _authenticated = value; } } } } // 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
- EmissiveMaterial.cs
- TypefaceCollection.cs
- ToolBarButton.cs
- IdentityValidationException.cs
- HttpBufferlessInputStream.cs
- BindingCollection.cs
- SerializerDescriptor.cs
- RangeValidator.cs
- LogReserveAndAppendState.cs
- OutputCacheProfile.cs
- SortDescriptionCollection.cs
- PrimitiveCodeDomSerializer.cs
- XmlSchemaSimpleContent.cs
- SqlUDTStorage.cs
- LocalizabilityAttribute.cs
- TdsParserHelperClasses.cs
- EmptyEnumerator.cs
- LinqDataSourceStatusEventArgs.cs
- LayoutTableCell.cs
- WorkflowEventArgs.cs
- _NegoState.cs
- BypassElement.cs
- SamlSecurityToken.cs
- ListViewGroupItemCollection.cs
- TextTreeObjectNode.cs
- ComboBox.cs
- Pool.cs
- Model3D.cs
- KnownBoxes.cs
- SizeAnimationBase.cs
- AttributeCollection.cs
- ConfigXmlAttribute.cs
- ImageKeyConverter.cs
- StylusDownEventArgs.cs
- DBConnectionString.cs
- CheckBoxStandardAdapter.cs
- RawStylusInputCustomDataList.cs
- PropertyCondition.cs
- DynamicRouteExpression.cs
- WebPartZone.cs
- DateTimeFormatInfo.cs
- PreloadedPackages.cs
- PackageRelationship.cs
- SamlAuthenticationStatement.cs
- Drawing.cs
- CreationContext.cs
- Barrier.cs
- StreamMarshaler.cs
- HybridDictionary.cs
- AudioFormatConverter.cs
- CustomDictionarySources.cs
- GridToolTip.cs
- HostingEnvironmentSection.cs
- Vector3DAnimation.cs
- WebPartMenu.cs
- _DigestClient.cs
- PageBreakRecord.cs
- QuadraticEase.cs
- DataRowComparer.cs
- XmlTextEncoder.cs
- SmtpSection.cs
- XPathDocumentBuilder.cs
- DataContractSerializerSection.cs
- DataGridPagerStyle.cs
- SiteMapNodeItem.cs
- SoapSchemaMember.cs
- SoapEnumAttribute.cs
- DataGridRelationshipRow.cs
- Pkcs7Signer.cs
- TextInfo.cs
- ProgressBarAutomationPeer.cs
- MultiSelector.cs
- HashHelper.cs
- ElementHost.cs
- SerializerProvider.cs
- ResourcePermissionBase.cs
- HTTPRemotingHandler.cs
- TemplateBuilder.cs
- MachineKeySection.cs
- Expression.DebuggerProxy.cs
- PolicyManager.cs
- Inflater.cs
- PrimarySelectionGlyph.cs
- SessionStateSection.cs
- BuildManager.cs
- SafeSystemMetrics.cs
- GraphicsContainer.cs
- AssemblyGen.cs
- MsmqMessageProperty.cs
- PerformanceCounterCategory.cs
- ISFClipboardData.cs
- TreeNodeCollection.cs
- DropSourceBehavior.cs
- PolyQuadraticBezierSegment.cs
- ObjectTypeMapping.cs
- ImageCodecInfo.cs
- ConfigXmlComment.cs
- CaseInsensitiveComparer.cs
- InvalidPrinterException.cs
- WebPartActionVerb.cs