Interfaccia IReportServerCredentials
Consente agli oggetti di specificare le credenziali da utilizzare per la connessione a un server di rapporti.
Spazio dei nomi Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in Microsoft.ReportViewer.WinForms.dll)
Sintassi
'Dichiarazione
Public Interface IReportServerCredentials
'Utilizzo
Dim instance As IReportServerCredentials
public interface IReportServerCredentials
public interface class IReportServerCredentials
type IReportServerCredentials = interface end
public interface IReportServerCredentials
Nel tipo IReportServerCredentials sono esposti i membri seguenti.
Proprietà
Nome | Descrizione | |
---|---|---|
ImpersonationUser | Specifica l'utente da rappresentare per la connessione a un server di rapporti. | |
NetworkCredentials | Restituisce le credenziali di rete da utilizzare per l'autenticazione con il server di rapporti. |
In alto
Metodi
Nome | Descrizione | |
---|---|---|
GetFormsCredentials | Specifica l'autenticazione basata su form da utilizzare per la connessione al server di rapporti |
In alto
Esempi
Nell'esempio seguente viene illustrata un'implementazione di IReportServerCredentials.
using System;
using System.Data;
using System.Windows.Forms;
using System.Security.Principal;
using Microsoft.Reporting.WinForms;
class MyCredentials : IReportServerCredentials
{
public WindowsIdentity ImpersonationUser
{
get
{
return null;
}
}
public bool GetBasicCredentials(out string user, out string
password, out string domain)
{
user = <UserName>;
password = <Password>;
domain = <DomainName>;
return true;
}
public bool GetFormsCredentials(System.Net.Cookie myCookie, out
string user, out string password, out string authority)
{
myCookie = user = password = authority = null;
return false;
}
}
public class Demo : Form
{
public Demo()
{
this.Text = "Report Control Demo";
this.ClientSize = new System.Drawing.Size(950, 600);
ReportViewer reportViewer = new ReportViewer();
// Set Processing Mode.
reportViewer.ProcessingMode = ProcessingMode.Remote;
// Set server info.
reportViewer.ServerReport.ReportServerUrl = new
Uri("http://<ServerName>/reportserver");
reportViewer.ServerReport.ReportPath = "/Report
Project1/Report1";
reportViewer.ServerReport.ReportServerCredentials = new
MyCredentials();
// Add the reportviewer to the form.
reportViewer.Dock = DockStyle.Fill;
this.Controls.Add(reportViewer);
// Process and render the report.
reportViewer.RefreshReport();
}
[STAThread]
public static int Main(string[] args)
{
Application.Run(new Demo());
return 0;
}
}