Click or drag to resize

IntentDeliveryMode Class

Inheritance Hierarchy
Enum
  Com.Datalogic.Decode.ConfigurationIntentDeliveryMode

Namespace:  Com.Datalogic.Decode.Configuration
Assembly:  datalogic-xamarin-sdk (in datalogic-xamarin-sdk.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public sealed class IntentDeliveryMode : Enum

The IntentDeliveryMode type exposes the following members.

Properties
  NameDescription
Public propertyStatic memberBroadcast
Sends an Intent using broadcastIntent to invoke registered broadcast receivers
Public propertyJniPeerMembers
To be added.
Public propertyStatic memberStartActivity
Sends an Intent using startActivity to invoke an Activity
Public propertyStatic memberStartService
Sends an Intent using startService to initiate operation of a Service
Top
Methods
  NameDescription
Public methodStatic memberValueOf
Returns the enum constant of this type with the specified name.
Public methodStatic memberValues
Returns an array containing the constants of this enum type, in the order they are declared.
Top
Remarks
IntentDeliveryMode is an enumeration defining the method by which the intent is delivered. The type is one of:
START_ACTIVITYIntent delivered via StartActivity
START_SERVICEIntent delivered via StartService
BROADCASTBroadcast Intent

[Android Documentation]

See Also