Click or drag to resize

CameoSdkParameters Constructor

Constructor where all parameters can be specified.

Namespace: Bosch.Vms.CameoSdk
Assembly: Bosch.Vms.CameoSdk (in Bosch.Vms.CameoSdk.dll) Version: 1.6.0.0
Syntax
C#
public CameoSdkParameters(
	string hostId,
	string binPath,
	bool useInternalLoggingSettings,
	Form mainForm
)

Parameters

hostId  String
Unique name in scope of one machine.
binPath  String
Path to the folder where SDK core components are installed.
Caution: The used binPath can potentially introduce security vulnerabilities. Validate and sanitize the path thoroughly. Ensure that the path points to a trusted and valid location within the application's intended scope and that the path cannot be manipulated. Limit the access and permissions of the provided path. Make sure that the application runs with the least privileges necessary to perform its intended functionality.
useInternalLoggingSettings  Boolean
Turn on/off internal SDK logging settings.
mainForm  Form
UI thread context.
Exceptions
ExceptionCondition
ArgumentNullExceptionParameters mainForm, hostId, binPath cannot be null.
ArgumentExceptionInvalid parameters are specified.
See Also