Partilhar via


Propriedade ReportServerCredentials.NetworkCredentials

Gets or sets the network credentials used for authentication with the report server.

Namespace:  Microsoft.Reporting.WinForms
Assembly:  Microsoft.ReportViewer.WinForms (em Microsoft.ReportViewer.WinForms.dll)

Sintaxe

'Declaração
Public Property NetworkCredentials As ICredentials
public ICredentials NetworkCredentials { get; set; }
public:
virtual property ICredentials^ NetworkCredentials {
    ICredentials^ get () sealed;
    void set (ICredentials^ value) sealed;
}
abstract NetworkCredentials : ICredentials with get, set
override NetworkCredentials : ICredentials with get, set
final function get NetworkCredentials () : ICredentials
final function set NetworkCredentials (value : ICredentials)

Valor de propriedade

Tipo: ICredentials
A NetworkCredentials object containing the network credentials used for authentication with the report server.

Implementações

IReportServerCredentials.NetworkCredentials

Exemplos

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";

            NetworkCredential myCred = new 
                NetworkCredential(<UserName>, <Password>, <DomainName>);
            reportViewer1.ServerReport.ReportServerCredentials.NetworkCredentials =
                myCred;
       
            reportViewer1.RefreshReport();
        }
    }
}

Consulte também

Referência

ReportServerCredentials Classe

Namespace Microsoft.Reporting.WinForms