Architecture Enumeration

Indicates the processor architecture of a COM driver DLL.

Definition

Namespace: ASCOM.Com
Assembly: ASCOM.Com (in ASCOM.Com.dll) Version: 4.0.0+77e18c564bf9ecdb0ef30166e894390d1b7d077c
C#
public enum Architecture

Remarks

This enum supports the PlatformUtilities.GetComMetadata method, which is only available in projects targeting .NET 8 and later.

Members

Unknown0The architecture could not be determined.
X86132-bit Intel/AMD (x86). Runs only in a 32-bit process.
X64264-bit Intel/AMD (x64). Runs only in a 64-bit process.
Msil3Managed Any-CPU (MSIL). Runs in both 32-bit and 64-bit processes.
Arm432-bit ARM. Runs only in a 32-bit ARM process.
Arm64564-bit ARM. Runs only in a 64-bit ARM64 process.

Version Information

Supported in: .NET Standard 2.0, .NET 8 .NET 9. .NET 10

See Also