Compartir a través de


Interfaz IAuthenticationExtension

Represents an authentication extension in SQL Server Reporting Services.

Espacio de nombres:  Microsoft.ReportingServices.Interfaces
Ensamblados:   Microsoft.ReportingServices.Interfaces (en Microsoft.ReportingServices.Interfaces.dll)
  Microsoft.ReportingServices.SharePoint.UI.WebParts (en Microsoft.ReportingServices.SharePoint.UI.WebParts.dll)

Sintaxis

'Declaración
Public Interface IAuthenticationExtension _
    Inherits IExtension
'Uso
Dim instance As IAuthenticationExtension
public interface IAuthenticationExtension : IExtension
public interface class IAuthenticationExtension : IExtension
type IAuthenticationExtension =  
    interface 
        interface IExtension 
    end
public interface IAuthenticationExtension extends IExtension

El tipo IAuthenticationExtension expone los siguientes miembros.

Propiedades

  Nombre Descripción
Propiedad pública LocalizedName Gets the localized name of the extension to be displayed in a user interface. (Se hereda de IExtension.)

Arriba

Métodos

  Nombre Descripción
Método público GetUserInfo Returns the current user identity.
Método público IsValidPrincipalName Indicates whether the specified principal name is valid.
Método público LogonUser Creates a logon session for the user associated with the given credentials.
Método público SetConfiguration Used to pass custom configuration data to an extension. (Se hereda de IExtension.)

Arriba

Comentarios

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.

Vea también

Referencia

Espacio de nombres Microsoft.ReportingServices.Interfaces