Skip to main content

CredentialsDemandedEventHandler Delegate

A method that will handle the RemoteDocumentSource.ReportServerCredentialsDemanded event.

Namespace: DevExpress.ReportServer.Printing

Assembly: DevExpress.Printing.v23.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

public delegate void CredentialsDemandedEventHandler(
    object sender,
    CredentialsEventArgs e
);

Parameters

Name Type Description
sender Object

The event sender.

e CredentialsEventArgs

A CredentialsEventArgs object that contains data related to the event.

Remarks

When creating a CredentialsDemandedEventHandler delegate, identify a method that will handle corresponding events.

To associate an event with an event handler, add a delegate instance to the event.

The event handler is called whenever the event occurs, unless the delegate is removed.

To learn more, see the Events and Delegates topic in MSDN.

See Also