Leadtools.Dicom Namespace > DicomPrintScu Class : OnPrintJobReport Method |
Value | Meaning |
---|---|
1 | Event Type Name = Pending. |
2 | Event Type Name = Printing. |
3 | Event Type Name = Done. |
4 | Event Type Name = Failure. |
public virtual void OnPrintJobReport( string printJobInstanceUid, int eventTypeID, DicomPrintJobReportInformation reportInformation )
'Declaration Public Overridable Sub OnPrintJobReport( _ ByVal printJobInstanceUid As String, _ ByVal eventTypeID As Integer, _ ByVal reportInformation As DicomPrintJobReportInformation _ )
'Usage Dim instance As DicomPrintScu Dim printJobInstanceUid As String Dim eventTypeID As Integer Dim reportInformation As DicomPrintJobReportInformation instance.OnPrintJobReport(printJobInstanceUid, eventTypeID, reportInformation)
public virtual void OnPrintJobReport( string printJobInstanceUid, int eventTypeID, DicomPrintJobReportInformation reportInformation )
function Leadtools.Dicom.DicomPrintScu.OnPrintJobReport( printJobInstanceUid , eventTypeID , reportInformation )
public: virtual void OnPrintJobReport( String^ printJobInstanceUid, int eventTypeID, DicomPrintJobReportInformation^ reportInformation )
Value | Meaning |
---|---|
1 | Event Type Name = Pending. |
2 | Event Type Name = Printing. |
3 | Event Type Name = Done. |
4 | Event Type Name = Failure. |
If the status of the Print Job is Pending or Failure, the Print SCP is supposed to supply additional information about the pending/error condition in the Attribute Execution Status Info (the property DicomPrintJobReportInformation.ExecutionStatusInfo of the DicomPrintJobReportInformation class).
The implementation of the DicomPrintScu class for this method simply does nothing. In order to make use of this callback method, you should create a new class derived from the DicomPrintScu class and override the method providing the desired implementation.