WalletActionKind WalletActionKind WalletActionKind WalletActionKind Enum

Definition

Represents the action that was taken on the item that caused your app to launch.

public : enum class WalletActionKindpublic enum WalletActionKindPublic Enum WalletActionKind// You can use this enum in JavaScript.
Attributes
Windows 10 requirements
Device family
Windows Desktop Extension SDK (introduced v10.0.10240.0) Windows Mobile Extension SDK (introduced v10.0.10240.0)
API contract
Windows.ApplicationModel.Wallet.WalletContract (introduced v1)

Fields

Message Message Message Message

A message was tapped.

MoreTransactions MoreTransactions MoreTransactions MoreTransactions

The UI item "see more transactions" was tapped.

OpenItem OpenItem OpenItem OpenItem

The item was opened.

Transaction Transaction Transaction Transaction

A transaction was tapped.

Verb Verb Verb Verb

A verb was tapped.

Remarks

When your app is launched as a result of an action on an item in Wallet, the OnActivated event handler in your app is called. The Kind value in the IActivatedEventArgs data is WalletAction. To access the information specific to wallet activation, cast the IActivatedEventArgs to WalletActionActivatedEventArgs.

See Also