IInstanceSettingsBundle.GetULong Method

Relativity API
Reads an Instance Setting value as an unsigned 64-bit integer.

Namespace:  Relativity.API
Assembly:  Relativity.API (in Relativity.API.dll) Version: 640db774aa42dfbe1785add27fbb41844ec5c7d4
Syntax

Nullable<ulong> GetULong(
	string section,
	string name
)

Parameters

section
Type: System.String
The Instance Setting section.
name
Type: System.String
The Instance Setting name.

Return Value

Type: Nullable<UInt64>
The value of the specified Instance Setting. If the Instance Setting does not exist, null is returned.
Exceptions

ExceptionCondition
TimeoutThrows a TimeoutException if the bundle is not initialized within a reasonable time. This exception can only be thrown on the initial bundle load. Once a value has been cached, this method is guaranteed to return a value for the duration of the bundle's lifetime. Consumers should read a value from the bundle at application startup to ensure the cache has been populated.
See Also

Reference