BlackBerry Dynamics for .NET Maui  12.0.0.9
Runtime library for .NET Maui applications
BBDXamarinForms.Common.Interfaces.AppKinetics.Events.ReceiveMessageEventArgs Class Reference

Provides data for ReceiveMessage event. More...

Inherits EventArgs.

Properties

string Application [get]
 The native application identifier of the consumer application that sent the service request. More...
 
string Service [get]
 The identifier of the service being requested. More...
 
string Version [get]
 The version identifier of the service being requested. More...
 
string Method [get]
 The method within the service request. More...
 
object Parameters [get]
 The service parameters in the request. More...
 
IBBDFileEntry[] Attachments [get]
 The array of files that were attached to the service request. More...
 
string RequestID [get]
 The unique identifier assigned to the service request. More...
 

Detailed Description

Provides data for ReceiveMessage event.

Property Documentation

◆ Application

string BBDXamarinForms.Common.Interfaces.AppKinetics.Events.ReceiveMessageEventArgs.Application
get

The native application identifier of the consumer application that sent the service request.

The application is not required to check the value, but may do so. For example, the application could be coded only to process service requests from a known set of consumer applications, and to fail requests from unknown applications.

String containing the application identifier.

◆ Attachments

IBBDFileEntry [] BBDXamarinForms.Common.Interfaces.AppKinetics.Events.ReceiveMessageEventArgs.Attachments
get

The array of files that were attached to the service request.

If the file attachments are in some way invalid then a service-specific error code could be set in the results object, or this could be handled in some other way according to the service definition.

Array of IBBDFileEntry objects containing the files.

◆ Method

string BBDXamarinForms.Common.Interfaces.AppKinetics.Events.ReceiveMessageEventArgs.Method
get

The method within the service request.

The application must check the value. If the application does not offer the requested method then the BBDServicesErrorMethodNotFound code must be set.

String containing the name of the method within the service request.

◆ Parameters

object BBDXamarinForms.Common.Interfaces.AppKinetics.Events.ReceiveMessageEventArgs.Parameters
get

The service parameters in the request.

If the service parameters are in some way invalid then a service-specific error code could be set, or this could be handled in some other way according to the service definition.

The service parameters in the request, sent by the consumer application.

◆ RequestID

string BBDXamarinForms.Common.Interfaces.AppKinetics.Events.ReceiveMessageEventArgs.RequestID
get

The unique identifier assigned to the service request.

The application must pass this value as the requestId parameter in the ReplyTo (IBBDService) call if it responds to the request.

String containing the unique identifier assigned to the service request by the AppKinetics system.

◆ Service

string BBDXamarinForms.Common.Interfaces.AppKinetics.Events.ReceiveMessageEventArgs.Service
get

The identifier of the service being requested.

The application must check the value. If the application does not offer the requested service then the BBDServicesErrorServiceNotFound code must be set.

String containing the identifier of the service being requested.

◆ Version

string BBDXamarinForms.Common.Interfaces.AppKinetics.Events.ReceiveMessageEventArgs.Version
get

The version identifier of the service being requested.

The application must check the value. If the application does not offer the requested service version then the BBDServicesErrorServiceVersionNotFound code must be set.

String containing the version identifier of the service being requested.