PrintSchema.MergeAndValidateWithDefaultPrintTicketAsync Method

Definition

Creates a new print ticket by merging the user’s selection with the default print ticket and validating that it will work for the device.

public:
 virtual IAsyncOperation<IRandomAccessStreamWithContentType ^> ^ MergeAndValidateWithDefaultPrintTicketAsync(IRandomAccessStreamWithContentType ^ deltaTicket) = MergeAndValidateWithDefaultPrintTicketAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IRandomAccessStreamWithContentType> MergeAndValidateWithDefaultPrintTicketAsync(IRandomAccessStreamWithContentType const& deltaTicket);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IRandomAccessStreamWithContentType> MergeAndValidateWithDefaultPrintTicketAsync(IRandomAccessStreamWithContentType deltaTicket);
function mergeAndValidateWithDefaultPrintTicketAsync(deltaTicket)
Public Function MergeAndValidateWithDefaultPrintTicketAsync (deltaTicket As IRandomAccessStreamWithContentType) As IAsyncOperation(Of IRandomAccessStreamWithContentType)

Parameters

deltaTicket
IRandomAccessStreamWithContentType

The delta print ticket, specifies the differences between the default print ticket and the user's selections.

Returns

An XML PrintTicket document containing the suggested print ticket.

Attributes

Remarks

This method attempts to merge the user's selections with a default print ticket - even one for a different 3D printer. The returned print ticket is "suggested" because it may fail upon submission to the 3D printer. If that ticket fails, it indicates that the print ticket is invalid for the printer. If that ticket succeeds, it can be reused by the 3D designer in subsequent submissions.

Applies to

See also