What is the variable type for the Config variable in REFramework project

Hi All,

What is the variable type for the Config variable in REFramework project?
Please help asap. Thanks in advance.

Regards,
Dev

Hi @devanand.1292

In a UiPath REFramework project, the Config variable is typically defined as a Dictionary(Of String, Object) data type.

  1. Dictionary: It’s a data structure that stores information in key-value pairs. In the case of Config, the keys are strings (text) that represent the names of configuration settings, and the values can be of various data types, often represented as objects.
  2. (Of String, Object): This part specifies the types of data that the dictionary can hold. In this case, it says that the keys should be strings (like “Timeout” or “FilePath”), and the corresponding values can be of any data type, as indicated by Object. This flexibility allows you to store different types of configuration data, like numbers, text, or even more complex objects.

Hope it helps!!

1 Like

Thank you so much :slight_smile: @Parvathy

1 Like

You’re Welcome @devanand.1292

Happy Automation

Regards,

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.