Click or drag to resize
ApplicationHandleGDMessage Method
Entry point for GD SDK -> Application communication. All messages sent from GD SDK are handled by this method.

Namespace:  GDEx
Assembly:  GDEx.UAP (in GDEx.UAP.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
protected virtual void HandleGDMessage(
	GDAppEvent appEvent
)

Parameters

appEvent
Type: GDGDAppEvent
GD SDK event details container. Contains event type, result code and message.
Remarks
Using this method application can listen for various events from GD SDK such as: authorization process status updates, policy or service lists updates. You should override this method in your application at least to handle GDAppEventAuthorized message. Application shouldn't allow user to access protected content before that.
See Also