Click or drag to resize

ConfigurationManager Class

The ConfigurationManager offers methods:
  1. to directly access a property, -
  2. to navigate the tree of properties, -
Inheritance Hierarchy
Object
  Com.Datalogic.Device.ConfigurationConfigurationManager

Namespace:  Com.Datalogic.Device.Configuration
Assembly:  datalogic-xamarin-sdk (in datalogic-xamarin-sdk.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public class ConfigurationManager : Object

The ConfigurationManager type exposes the following members.

Constructors
  NameDescription
Public methodConfigurationManager
Initializes a new instance of the ConfigurationManager class
Top
Properties
  NameDescription
Public propertyJniPeerMembers
To be added.
Public propertyTreeRoot
Returns the PropertyGroup
Top
Methods
Remarks
ConfigurationManager gives the developer the ability to browse and set the configuration properties of the device. The device, as a managed device, exposes properties organized in a tree. Each property has a unique identifier used to uniquely identify the property. ConfigurationManager is the sdk access point to the whole of properties that describes and allows the configuration of the device.
Using ConfigurationManager the user can read and modify the value of any property.
The properties are organized in a tree where the leaves are the properties and the intermediate nodes are the groups. A group is a functional collection of property. A group cannot be modified, only the contained properties can be modified.
A property is uniquely identified by an integer identifier PropertyID.
A group is uniquely identified by an integer identifier PropertyGroupID..

The ConfigurationManager offers methods:

  1. to directly access a property, -
  2. to navigate the tree of properties, -

A Property offers methods to get/set the value.
When the value of a property is modified it is not directly applied to the device. The change is only kept in the sdk local image of the configuration that’s the tree of properties. To actually apply the change to the device the ConfigurationManager commit() method must be called.

A group PropertyGroup offers methods:

  1. to directly access a property of its subtree, -
  2. to navigate its subtree of properties and groups. -

[Android Documentation]

See Also