BindingFailedEventArgs
BindingFailedEventArgs
BindingFailedEventArgs
BindingFailedEventArgs
Class
Definition
Provides event data for the DebugSettings.BindingFailed event.
public : sealed class BindingFailedEventArgs : IBindingFailedEventArgspublic sealed class BindingFailedEventArgs : IBindingFailedEventArgsPublic NotInheritable Class BindingFailedEventArgs Implements IBindingFailedEventArgs// This API is not available in Javascript.
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
BindingFailedEventArgs is used for debugging bindings, using a technique that you shouldn't include in production code. Wire the event handler using DebugSettings, and use this data class as the result in your handler. You'll mainly be interested in the Message value, which you could log or send to Debug output.
Properties
Message Message Message Message
Gets the explanation of the binding failure.
public : PlatForm::String Message { get; }public string Message { get; }Public ReadOnly Property Message As string// This API is not available in Javascript.
- Value
- PlatForm::String string string string
The reason the binding failed.
- See Also