IAuthenticationExtension Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents an authentication extension in SQL Server Reporting Services.
public interface class IAuthenticationExtension : Microsoft::ReportingServices::Interfaces::IExtension
public interface IAuthenticationExtension : Microsoft.ReportingServices.Interfaces.IExtension
type IAuthenticationExtension = interface
interface IExtension
Public Interface IAuthenticationExtension
Implements IExtension
- Derived
- Implements
Remarks
The IAuthenticationExtension interface in Reporting Services enables your security extension to specify a custom way for the report server to authenticate users. To create an authentication extension class, implement IAuthenticationExtension.
Your authentication extension should provide implementations for the LogonUser, GetUserInfo, and IsValidPrincipalName methods. Implementing IAuthenticationExtension enables your security extension to validate user credentials against a specified authority and enables the report server to access user information.
The primary way in which you can implement a custom authentication extension is through the use of Forms authentication. For more information, see "Forms Authentication Provider" in your .NET Framework Developer's Guide.
Properties
LocalizedName |
Gets the localized name of the extension to be displayed in a user interface. (Inherited from IExtension) |
Methods
GetUserInfo(IIdentity, IntPtr) |
Returns the current user identity. |
IsValidPrincipalName(String) |
Indicates whether the specified principal name is valid. |
LogonUser(String, String, String) |
Indicates whether the logon session for the user is associated with the given credentials. |
SetConfiguration(String) |
Used to pass custom configuration data to an extension. (Inherited from IExtension) |