Click or drag to resize

ConfigurationDatabase Class

This class represents the ConfigurationDatabase of a Robot controller.
Inheritance Hierarchy

Namespace:  ABB.Robotics.Controllers.ConfigurationDomain
Assembly:  ABB.Robotics.Controllers (in ABB.Robotics.Controllers.dll) Version: 6.5.129.0
Syntax
C#
public sealed class ConfigurationDatabase : SDKBase

The ConfigurationDatabase type exposes the following members.

Properties
  NameDescription
Public propertyControllerType
Gets the ControllerType.
(Inherited from SDKBase.)
Top
Methods
  NameDescription
Public methodDispose
Disposes the managed resources of the instance.
(Overrides SDKDisposeBaseDispose.)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetDomain
Returns the configuration domain with the specified name.
Public methodGetDomains
Returns the domains of the configuration database.
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the type of the current instance.
(Inherited from Object.)
Public methodCode exampleRead
Reads the value of a configuration parameter from the configuration database of the controller.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodCode exampleWrite
Writes a value of a configuration parameter to the configuration database of the controller.
Top
Remarks
The ConfigurationDatabase object is created for you as soon as requested.
Examples
Controller c = new Controller();
ConfigurationDatabase cfg = c.Configuration;
See Also