Поделиться через


Метод ReportServerCredentials.SetFormsCredentials

Указывает, что при соединении с сервером отчетов используется проверка подлинности с помощью форм и предоставляет учетные данные форм.

Пространство имен:  Microsoft.Reporting.WinForms
Сборка:  Microsoft.ReportViewer.WinForms (в Microsoft.ReportViewer.WinForms.dll)

Синтаксис

'Декларация
Public Sub SetFormsCredentials ( _
    authCookie As Cookie, _
    userName As String, _
    password As String, _
    authority As String _
)
'Применение
Dim instance As ReportServerCredentials
Dim authCookie As Cookie
Dim userName As String
Dim password As String
Dim authority As String

instance.SetFormsCredentials(authCookie, _
    userName, password, authority)
public void SetFormsCredentials(
    Cookie authCookie,
    string userName,
    string password,
    string authority
)
public:
void SetFormsCredentials(
    Cookie^ authCookie, 
    String^ userName, 
    String^ password, 
    String^ authority
)
member SetFormsCredentials : 
        authCookie:Cookie * 
        userName:string * 
        password:string * 
        authority:string -> unit 
public function SetFormsCredentials(
    authCookie : Cookie, 
    userName : String, 
    password : String, 
    authority : String
)

Параметры

  • authCookie
    Тип: System.Net.Cookie
    Файл cookie проверки подлинности, используемый сервером отчетов.
  • userName
    Тип: System.String
    Имя пользователя, которое будет использоваться для подключения к серверу отчетов.
  • password
    Тип: System.String
    Пароль, который будет использоваться для подключения к серверу отчетов.
  • authority
    Тип: System.String
    Подсистема безопасности, используемая в проверке подлинности пользователя, например домен Windows.

Примеры

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Net;

namespace ReportServerCredentialsSample
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            reportViewer1.ProcessingMode = Microsoft.Reporting.WinForms.ProcessingMode.Remote;

            reportViewer1.ServerReport.ReportPath = 
                @"/Adventureworks Sample Reports/Company Sales";

            reportViewer1.ServerReport.ReportServerCredentials.SetFormsCredentials(
                null, <UserName>, <Password>, <DomainName>);
       
            reportViewer1.RefreshReport();
        }
    }
}

См. также

Справочник

ReportServerCredentials Класс

Пространство имен Microsoft.Reporting.WinForms