WalletItemStore.GetWalletItemAsync(String) Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Achtung
Der ApplicationModel.Wallet-Namespace wird nicht mehr unterstützt und wird bald veraltet sein. Entwickler werden empfohlen, die Verwendung dieses Namespaces zu vermeiden.
Ruft ein einzelnes Brieftaschenelement mit der angegebenen ID aus der Brieftaschendatenbank ab. Das angeforderte Element muss sich im Besitz dieser App befinden.
public:
virtual IAsyncOperation<WalletItem ^> ^ GetWalletItemAsync(Platform::String ^ id) = GetWalletItemAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<WalletItem> GetWalletItemAsync(winrt::hstring const& id);
/// [Windows.Foundation.Metadata.RemoteAsync]
/// [Windows.Foundation.Metadata.Deprecated("IWalletItemStore is deprecated and might not work on all platforms. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 917504, "Windows.Foundation.UniversalApiContract")]
IAsyncOperation<WalletItem> GetWalletItemAsync(winrt::hstring const& id);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<WalletItem> GetWalletItemAsync(string id);
[Windows.Foundation.Metadata.RemoteAsync]
[Windows.Foundation.Metadata.Deprecated("IWalletItemStore is deprecated and might not work on all platforms. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 917504, "Windows.Foundation.UniversalApiContract")]
public IAsyncOperation<WalletItem> GetWalletItemAsync(string id);
function getWalletItemAsync(id)
Public Function GetWalletItemAsync (id As String) As IAsyncOperation(Of WalletItem)
Parameter
- id
-
String
Platform::String
winrt::hstring
Die ID des Brieftaschenelements.
Gibt zurück
Ein asynchroner Vorgang, der nach erfolgreichem Abschluss das Brieftaschenelement mit der angegebenen ID zurückgibt, die sich im Besitz dieser App befindet. Wenn Sie die asynchrone Programmierung verwenden, ist der Ergebnistyp ein einzelnes WalletItem. Wenn ein Element mit der angegebenen ID für diese App im aktuellen WalletItemStore nicht gefunden werden kann oder wenn das Element nicht im Besitz dieser App ist, ist das Ergebnis NULL.
- Attribute