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
- CodeGroup.cs
- TextModifier.cs
- LineServices.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- TextEmbeddedObject.cs
- ImageSource.cs
- DocumentPage.cs
- PropertyInfoSet.cs
- RemotingHelper.cs
- ToolBarPanel.cs
- HandledEventArgs.cs
- MetadataUtilsSmi.cs
- GridPattern.cs
- DLinqAssociationProvider.cs
- ResizingMessageFilter.cs
- SourceFileBuildProvider.cs
- IsolatedStorage.cs
- DataObject.cs
- ThicknessAnimation.cs
- MustUnderstandBehavior.cs
- VerificationAttribute.cs
- ExtentCqlBlock.cs
- SharedStatics.cs
- BaseTemplateBuildProvider.cs
- SimpleHandlerFactory.cs
- ObjectListField.cs
- SweepDirectionValidation.cs
- WebBrowser.cs
- ToolStripRenderer.cs
- DefaultShape.cs
- PropertyState.cs
- OptimizedTemplateContent.cs
- MetadataHelper.cs
- DefaultShape.cs
- SafeHandle.cs
- XmlnsPrefixAttribute.cs
- IFlowDocumentViewer.cs
- UnsafeNativeMethods.cs
- CSharpCodeProvider.cs
- StringWriter.cs
- DocumentReference.cs
- util.cs
- PointConverter.cs
- ClientCultureInfo.cs
- QilSortKey.cs
- Drawing.cs
- DbConnectionPoolIdentity.cs
- MultipleViewProviderWrapper.cs
- StatusBarItemAutomationPeer.cs
- FontEmbeddingManager.cs
- RtfControls.cs
- GridViewColumnCollection.cs
- Dynamic.cs
- Command.cs
- DataGridViewTextBoxColumn.cs
- DataGridHyperlinkColumn.cs
- ControlHelper.cs
- SQLDecimalStorage.cs
- LinkLabelLinkClickedEvent.cs
- ThreadInterruptedException.cs
- XmlTextReaderImplHelpers.cs
- AnimationClockResource.cs
- DbConnectionStringCommon.cs
- FileDialogCustomPlacesCollection.cs
- TypeGeneratedEventArgs.cs
- FileIOPermission.cs
- ReflectEventDescriptor.cs
- ColumnResizeAdorner.cs
- CollectionBase.cs
- TextFormatterImp.cs
- WebPartVerbCollection.cs
- PeerDuplexChannelListener.cs
- WebPartsSection.cs
- TreeView.cs
- TypedTableBaseExtensions.cs
- NamespaceInfo.cs
- DataContractSet.cs
- SingleConverter.cs
- exports.cs
- RowsCopiedEventArgs.cs
- ProviderSettingsCollection.cs
- PeerContact.cs
- ILGenerator.cs
- NativeMethods.cs
- DataServiceConfiguration.cs
- ProjectionCamera.cs
- Timer.cs
- MediaContextNotificationWindow.cs
- SizeLimitedCache.cs
- PathData.cs
- httpserverutility.cs
- odbcmetadatafactory.cs
- ParseHttpDate.cs
- StsCommunicationException.cs
- CompositeDispatchFormatter.cs
- WebPartDescriptionCollection.cs
- InvalidDocumentContentsException.cs
- InternalControlCollection.cs
- DocumentProperties.cs
- OracleConnectionFactory.cs