Back to Devexpress

CredentialsDemandedEventHandler Delegate

corelibraries-devexpress-dot-reportserver-dot-printing-6a89c95f.md

latest1.8 KB
Original Source

CredentialsDemandedEventHandler Delegate

A method that will handle the RemoteDocumentSource.ReportServerCredentialsDemanded event.

Namespace : DevExpress.ReportServer.Printing

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

NuGet Package : DevExpress.Printing.Core

Declaration

csharp
public delegate void CredentialsDemandedEventHandler(
    object sender,
    CredentialsEventArgs e
);
vb
Public Delegate Sub CredentialsDemandedEventHandler(
    sender As Object,
    e As CredentialsEventArgs
)

Parameters

NameTypeDescription
senderObject

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

DevExpress.ReportServer.Printing Namespace