ReportViewer.SubmittingDataSourceCredentials Event

 

Occurs when the user submits new data source credentials viaby using the built-in prompt area.

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

Syntax

public event ReportCredentialsEventHandler SubmittingDataSourceCredentials
public:
event ReportCredentialsEventHandler^ SubmittingDataSourceCredentials {
    void add(ReportCredentialsEventHandler^ value);
    void remove(ReportCredentialsEventHandler^ value);
}
member SubmittingDataSourceCredentials : IEvent<ReportCredentialsEventHandler,
    ReportCredentialsEventArgs>
Public Event SubmittingDataSourceCredentials As ReportCredentialsEventHandler

Remarks

This event occurs when the user submits data source credentials. Information about this event is passed in a ReportCredentialsEventArgs object to the ReportCredentialsEventHandler delegate, which handles the event. This event only applies to remote processing mode.

Handle this event to read or modify the data source credentials before they are submitted to the report server.

For more information about handling events, see NIB: Consuming Events.

See Also

DataSourceCredentials
DataSourceCredentialsCollection
ReportViewer Class
Microsoft.Reporting.WinForms Namespace

Return to top