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
- Table.cs
- GraphicsContainer.cs
- DataBoundControl.cs
- _ChunkParse.cs
- XmlReaderSettings.cs
- BitmapSizeOptions.cs
- IgnorePropertiesAttribute.cs
- RuntimeEnvironment.cs
- Stacktrace.cs
- RawUIStateInputReport.cs
- SafePointer.cs
- SmiEventSink_DeferedProcessing.cs
- DSASignatureDeformatter.cs
- wmiutil.cs
- FacetValues.cs
- RubberbandSelector.cs
- ExeConfigurationFileMap.cs
- EdmSchemaAttribute.cs
- ComUdtElement.cs
- ScaleTransform3D.cs
- OutputCache.cs
- ScrollProperties.cs
- FolderLevelBuildProviderCollection.cs
- FrameworkContentElementAutomationPeer.cs
- TableColumnCollectionInternal.cs
- PerformanceCounterManager.cs
- TargetInvocationException.cs
- DeploymentSection.cs
- DecoderFallback.cs
- ExceptionTranslationTable.cs
- TripleDES.cs
- LayeredChannelFactory.cs
- SafeThemeHandle.cs
- documentsequencetextview.cs
- Vector3DCollectionConverter.cs
- Policy.cs
- FormViewCommandEventArgs.cs
- CompositeFontInfo.cs
- PixelFormat.cs
- TextDecorationLocationValidation.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- ZipIOLocalFileDataDescriptor.cs
- X509Certificate2Collection.cs
- DerivedKeySecurityTokenStub.cs
- FileInfo.cs
- filewebrequest.cs
- TreeIterators.cs
- VarRemapper.cs
- WebPartMinimizeVerb.cs
- FreezableCollection.cs
- TransportBindingElementImporter.cs
- ListItemConverter.cs
- StringConcat.cs
- ToolStripGripRenderEventArgs.cs
- CompilerInfo.cs
- EntitySqlQueryState.cs
- PageRanges.cs
- DSACryptoServiceProvider.cs
- SqlDataSourceSelectingEventArgs.cs
- PageThemeCodeDomTreeGenerator.cs
- WCFBuildProvider.cs
- ConstraintCollection.cs
- HyperLinkColumn.cs
- Pair.cs
- NameSpaceEvent.cs
- KeyboardNavigation.cs
- XamlSerializerUtil.cs
- StringValidatorAttribute.cs
- AutoFocusStyle.xaml.cs
- PartialArray.cs
- FreezableOperations.cs
- TextDecoration.cs
- SafeCertificateStore.cs
- UserControlParser.cs
- IdentityReference.cs
- ContentIterators.cs
- AsyncResult.cs
- ContractSearchPattern.cs
- SqlBinder.cs
- DataObjectFieldAttribute.cs
- EntityTypeBase.cs
- QuotedStringFormatReader.cs
- RadioButton.cs
- SafeArchiveContext.cs
- ProcessInfo.cs
- CodeDelegateInvokeExpression.cs
- TrailingSpaceComparer.cs
- StopRoutingHandler.cs
- BamlTreeNode.cs
- HttpHeaderCollection.cs
- Group.cs
- AuthorizationSection.cs
- ParameterEditorUserControl.cs
- SqlCacheDependencySection.cs
- securitycriticaldataClass.cs
- EventTrigger.cs
- HttpSysSettings.cs
- BatchWriter.cs
- DataViewManagerListItemTypeDescriptor.cs
- ContentDisposition.cs