Class SdkEnvironmentOptions
- Namespace
- RDCore.SDK.Server.Configuration
- Assembly
- RDCore.SDK.dll
Runtime environment settings, bound from appsettings.json. These become the session's
IRuntimeEnvironmentProfile.
public record SdkEnvironmentOptions : IEquatable<SdkEnvironmentOptions>
- Inheritance
-
SdkEnvironmentOptions
- Implements
- Inherited Members
Properties
AnsiCodePage
The ANSI code page for Byte() ↔ String and non-Unicode Chr / Asc.
public int AnsiCodePage { get; set; }
Property Value
Is64Bit
true for a 64-bit environment (LongPtr width, #If Win64 / #If VBA7).
public bool Is64Bit { get; set; }
Property Value
Lcid
The environment locale identifier. 0 (the default) means the invariant locale.
public int Lcid { get; set; }
Property Value
SupportsOptionCompareDatabase
true when the host supports the Option Compare Database directive (Microsoft Access).
public bool SupportsOptionCompareDatabase { get; set; }