Table of Contents

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

int

Is64Bit

true for a 64-bit environment (LongPtr width, #If Win64 / #If VBA7).

public bool Is64Bit { get; set; }

Property Value

bool

Lcid

The environment locale identifier. 0 (the default) means the invariant locale.

public int Lcid { get; set; }

Property Value

int

SupportsOptionCompareDatabase

true when the host supports the Option Compare Database directive (Microsoft Access).

public bool SupportsOptionCompareDatabase { get; set; }

Property Value

bool