PrintWorkflowJobIssueDetectedEventArgs.SkipSystemErrorToast Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a sets a value that specifies whether the default system toast notification for the printer job issue should be skipped.
public:
property bool SkipSystemErrorToast { bool get(); void set(bool value); };
bool SkipSystemErrorToast();
void SkipSystemErrorToast(bool value);
public bool SkipSystemErrorToast { get; set; }
var boolean = printWorkflowJobIssueDetectedEventArgs.skipSystemErrorToast;
printWorkflowJobIssueDetectedEventArgs.skipSystemErrorToast = boolean;
Public Property SkipSystemErrorToast As Boolean
Property Value
bool
True if the system toast notification should be skipped; otherwise, false.
Remarks
Setting this property to true in the handler for PrintWorkflowJobBackgroundSession.JobIssueDetected enables apps to launch their own custom toast notification without the user receiving redundant notifications.