Freigeben über


PrintExtensionContext Klasse

Definition

Stellt den Kontext für das Druckererweiterungsobjekt bereit.

public ref class PrintExtensionContext abstract sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Devices.Printers.Extensions.ExtensionsContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class PrintExtensionContext final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Devices.Printers.Extensions.ExtensionsContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public static class PrintExtensionContext
Public Class PrintExtensionContext
Vererbung
Object Platform::Object IInspectable PrintExtensionContext
Attribute

Windows-Anforderungen

Gerätefamilie
Windows Desktop Extension SDK (eingeführt in 10.0.10240.0)
API contract
Windows.Devices.Printers.Extensions.ExtensionsContract (eingeführt in v1.0)

Hinweise

Der folgende JavaScript-Codeausschnitt ruft den PrinterExtensionContext mithilfe einer DeviceInformation-ID ab und verwendet dann den Kontext, um ein Hilfsobjekt zu erstellen:

// This function runs when the user taps the Back button
function getInkStatus(deviceInformationId) {
    var responseString;
    try {
        var context = Windows.Devices.Printers.Extensions.
            PrintExtensionContext.fromDeviceId(deviceInformationId);
        var helper = new Microsoft.Samples.Printing.WwaDca.
            PrintHelperClass(context);
        var responseString = helper.getInkLevel(1);
    } catch (e) {
        responseString = "deviceInformationId: " + deviceInformationId + 
            " Message: " + e.message;
    }
    return responseString
}

Weitere Informationen zur Verwendung der PrinterExtensionContext-Klasse finden Sie im Thema UWP-Geräte-Apps für Drucker im Hardware Dev Center.

Methoden

FromDeviceId(String)

Ruft den Kontext für das Druckererweiterungsobjekt basierend auf der DeviceInformation-ID ab.

Gilt für:

Weitere Informationen