次の方法で共有


PrintSupportExtensionSession.PrintTicketValidationRequested イベント

定義

印刷チケットを検証する必要がある場合に発生します。

// Register
event_token PrintTicketValidationRequested(TypedEventHandler<PrintSupportExtensionSession, PrintSupportPrintTicketValidationRequestedEventArgs const&> const& handler) const;

// Revoke with event_token
void PrintTicketValidationRequested(event_token const* cookie) const;

// Revoke with event_revoker
PrintSupportExtensionSession::PrintTicketValidationRequested_revoker PrintTicketValidationRequested(auto_revoke_t, TypedEventHandler<PrintSupportExtensionSession, PrintSupportPrintTicketValidationRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<PrintSupportExtensionSession,PrintSupportPrintTicketValidationRequestedEventArgs> PrintTicketValidationRequested;
function onPrintTicketValidationRequested(eventArgs) { /* Your code */ }
printSupportExtensionSession.addEventListener("printticketvalidationrequested", onPrintTicketValidationRequested);
printSupportExtensionSession.removeEventListener("printticketvalidationrequested", onPrintTicketValidationRequested);
- or -
printSupportExtensionSession.onprintticketvalidationrequested = onPrintTicketValidationRequested;
Public Custom Event PrintTicketValidationRequested As TypedEventHandler(Of PrintSupportExtensionSession, PrintSupportPrintTicketValidationRequestedEventArgs) 

イベントの種類

注釈

このイベントは、印刷ジョブ中にいつでも発生させることができます。 コードで印刷チケットが検証されたら、 SetPrintTicketValidationStatus を呼び出して、印刷チケットが解決されたか、競合しているか、無効であるかを示します。

適用対象