VoiceCommandActivatedEventArgs
VoiceCommandActivatedEventArgs
VoiceCommandActivatedEventArgs
VoiceCommandActivatedEventArgs
Class
Definition
Contains info for the app's activated event when the app is launched through a voice command.
public : sealed class VoiceCommandActivatedEventArgs : IActivatedEventArgs, IActivatedEventArgsWithUser, IVoiceCommandActivatedEventArgspublic sealed class VoiceCommandActivatedEventArgs : IActivatedEventArgs, IActivatedEventArgsWithUser, IVoiceCommandActivatedEventArgsPublic NotInheritable Class VoiceCommandActivatedEventArgs Implements IActivatedEventArgs, IActivatedEventArgsWithUser, IVoiceCommandActivatedEventArgs// You can use this class in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
Access this object by overriding either the Windows Library for JavaScript (WinJS) onactivated event or the Extensible Application Markup Language (XAML) OnActivated method, when the value of IActivatedEventArgs.Kind is VoiceCommand.
Properties
Kind Kind Kind Kind
Gets the activation type.
public : ActivationKind Kind { get; }public ActivationKind Kind { get; }Public ReadOnly Property Kind As ActivationKind// You can use this property in JavaScript.
The ActivationKind.VoiceCommand enumeration value.
PreviousExecutionState PreviousExecutionState PreviousExecutionState PreviousExecutionState
Gets the execution state of the app before it was activated.
public : ApplicationExecutionState PreviousExecutionState { get; }public ApplicationExecutionState PreviousExecutionState { get; }Public ReadOnly Property PreviousExecutionState As ApplicationExecutionState// You can use this property in JavaScript.
- Value
- ApplicationExecutionState ApplicationExecutionState ApplicationExecutionState ApplicationExecutionState
One of the enumeration values.
Result Result Result Result
Gets the SpeechRecognitionResult object representing the voice command that activated the app.
public : SpeechRecognitionResult Result { get; }public SpeechRecognitionResult Result { get; }Public ReadOnly Property Result As SpeechRecognitionResult// You can use this property in JavaScript.
- Value
- SpeechRecognitionResult SpeechRecognitionResult SpeechRecognitionResult SpeechRecognitionResult
The SpeechRecognitionResult object representing the voice commands that activated the app.
SplashScreen SplashScreen SplashScreen SplashScreen
Gets info about the transition from the splash screen to the activated app.
public : SplashScreen SplashScreen { get; }public SplashScreen SplashScreen { get; }Public ReadOnly Property SplashScreen As SplashScreen// You can use this property in JavaScript.
The splash screen transition info.
User User User User
Gets the user that the app was activated for.
public : User User { get; }public User User { get; }Public ReadOnly Property User As User// You can use this property in JavaScript.
| Device family |
Windows 10 Anniversary Edition (introduced v10.0.14393.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v3)
|
Remarks
This property returns the logged-in user on platforms that only support single-user sessions. For platforms that support multiple users in a session (such as Xbox) this property returns the logged-in user that the app was activated for.
This property returns null when a multi-user application is activated with no specific user context.
Multi-user apps can use this property to allow or restrict app behavior. For example, you might restrict access to content or features based on the user’s credentials.