IAdminConfigurationsAddSimpleConfigurationNodeT Method

Adds a simple configuration node to M-Files Admin.

Definition

Namespace: MFiles.VAF.AdminConfigurations
Assembly: MFiles.VAF (in MFiles.VAF.dll) Version: 24.1.706.1
C#
ConfigurationNode<T> AddSimpleConfigurationNode<T>(
	string nodeName,
	Func<string> dashboardGenerator = null
)
where T : class, new()

Parameters

nodeName  String
Name of the node.
dashboardGenerator  FuncString  (Optional)
Function to generate content for the dashboard.

Type Parameters

T
The type of the configuration class. Must have an zero parameter constructor.

Return Value

ConfigurationNodeT
The added configuration node.

See Also