Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / Security / PassportAuthenticationEventArgs.cs / 1 / PassportAuthenticationEventArgs.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
* PassportAuthenticationEventArgs class
*
* Copyright (c) 1999 Microsoft Corporation
*/
namespace System.Web.Security {
using System.Security.Principal;
using System.Security.Permissions;
///
/// The
/// event argument passed to the PassportAuthentication_OnAuthenticate event by the
/// PassportAuthentication module.
/// Since there is already an identity at this point, this is useful mainly
/// for attaching a custom IPrincipal object to the context using the supplied
/// identity.
///
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public sealed class PassportAuthenticationEventArgs : EventArgs {
private IPrincipal _User;
private HttpContext _Context;
private PassportIdentity _Identity;
///
/// IPrincipal
/// object to be associated with the request.
/// The user object should be attached to the context. If User is non null and Context.User is
/// null, the PassportAuthenticationModule will initialize Context.User with
/// PassportAuthenticationEventArgs.User.
///
public IPrincipal User {
get { return _User;}
[SecurityPermission(SecurityAction.Demand, ControlPrincipal=true)]
set {
_User = value;
}
}
///
/// The
/// HttpContext intrinsic - most notably provides access to Request, Response, and
/// User objects.
///
public HttpContext Context { get { return _Context;}}
///
/// An authenticated Passport identity.
///
public PassportIdentity Identity { get { return _Identity;}}
///
/// Constructor
///
public PassportAuthenticationEventArgs(PassportIdentity identity, HttpContext context) {
_Identity = identity;
_Context = context;
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
* PassportAuthenticationEventArgs class
*
* Copyright (c) 1999 Microsoft Corporation
*/
namespace System.Web.Security {
using System.Security.Principal;
using System.Security.Permissions;
///
/// The
/// event argument passed to the PassportAuthentication_OnAuthenticate event by the
/// PassportAuthentication module.
/// Since there is already an identity at this point, this is useful mainly
/// for attaching a custom IPrincipal object to the context using the supplied
/// identity.
///
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public sealed class PassportAuthenticationEventArgs : EventArgs {
private IPrincipal _User;
private HttpContext _Context;
private PassportIdentity _Identity;
///
/// IPrincipal
/// object to be associated with the request.
/// The user object should be attached to the context. If User is non null and Context.User is
/// null, the PassportAuthenticationModule will initialize Context.User with
/// PassportAuthenticationEventArgs.User.
///
public IPrincipal User {
get { return _User;}
[SecurityPermission(SecurityAction.Demand, ControlPrincipal=true)]
set {
_User = value;
}
}
///
/// The
/// HttpContext intrinsic - most notably provides access to Request, Response, and
/// User objects.
///
public HttpContext Context { get { return _Context;}}
///
/// An authenticated Passport identity.
///
public PassportIdentity Identity { get { return _Identity;}}
///
/// Constructor
///
public PassportAuthenticationEventArgs(PassportIdentity identity, HttpContext context) {
_Identity = identity;
_Context = context;
}
}
}
// 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
- SystemUnicastIPAddressInformation.cs
- ToolStripItemClickedEventArgs.cs
- WorkflowRuntimeServiceElement.cs
- XMLSyntaxException.cs
- TransformerTypeCollection.cs
- embossbitmapeffect.cs
- DefaultAutoFieldGenerator.cs
- tooltip.cs
- DeclarativeCatalogPart.cs
- SelectionPattern.cs
- DataContext.cs
- GridViewCellAutomationPeer.cs
- QilChoice.cs
- RuntimeIdentifierPropertyAttribute.cs
- NamespaceImport.cs
- ConnectionInterfaceCollection.cs
- ItemAutomationPeer.cs
- HostingEnvironmentException.cs
- ProgramPublisher.cs
- ControlPropertyNameConverter.cs
- _NegotiateClient.cs
- EnlistmentState.cs
- PasswordRecoveryDesigner.cs
- LocalServiceSecuritySettings.cs
- SqlDependencyUtils.cs
- PostBackOptions.cs
- RealProxy.cs
- XmlQueryCardinality.cs
- CacheRequest.cs
- basemetadatamappingvisitor.cs
- TypeDependencyAttribute.cs
- CachedRequestParams.cs
- RightsManagementEncryptedStream.cs
- ListViewItem.cs
- HttpSocketManager.cs
- WebConfigurationManager.cs
- InvariantComparer.cs
- TcpClientCredentialType.cs
- SecurityException.cs
- PartManifestEntry.cs
- NameValueConfigurationCollection.cs
- DBSqlParserColumn.cs
- TextFormatterContext.cs
- Regex.cs
- AppearanceEditorPart.cs
- FontEmbeddingManager.cs
- Odbc32.cs
- ResetableIterator.cs
- FlowLayout.cs
- ClassicBorderDecorator.cs
- TextTreeNode.cs
- LinkLabel.cs
- ImageCodecInfoPrivate.cs
- HostedElements.cs
- CapabilitiesSection.cs
- DataGridCell.cs
- SQLBinary.cs
- FatalException.cs
- CatalogPart.cs
- ObjectDesignerDataSourceView.cs
- SettingsPropertyWrongTypeException.cs
- SqlBulkCopy.cs
- SerialErrors.cs
- ChtmlTextWriter.cs
- StringPropertyBuilder.cs
- Solver.cs
- RuntimeEnvironment.cs
- RSACryptoServiceProvider.cs
- ModelItem.cs
- WebPartZoneCollection.cs
- WebPartVerbCollection.cs
- QueryConverter.cs
- DecimalAnimationBase.cs
- OdbcConnectionOpen.cs
- WindowsUpDown.cs
- ReadContentAsBinaryHelper.cs
- ClientOperationFormatterProvider.cs
- CollectionBuilder.cs
- ScrollItemPatternIdentifiers.cs
- RootProfilePropertySettingsCollection.cs
- AddInAttribute.cs
- ThreadExceptionDialog.cs
- XmlSequenceWriter.cs
- ControlUtil.cs
- DataRowView.cs
- ByteFacetDescriptionElement.cs
- HostProtectionPermission.cs
- MenuItem.cs
- TypeUsageBuilder.cs
- Script.cs
- XmlILOptimizerVisitor.cs
- HwndHostAutomationPeer.cs
- PersonalizationProviderCollection.cs
- PartialCachingControl.cs
- TextTreeUndo.cs
- ButtonBase.cs
- OrderedDictionaryStateHelper.cs
- UInt64Converter.cs
- NativeMethods.cs
- ConfigXmlText.cs