| RuntimeDetector Class |
Used to detect specific .NET runtimes, to make it easier to adjust for platform specific
differences.
Inheritance Hierarchy
Namespace:
Akka.Util
Assembly:
Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax public static class RuntimeDetector
[<AbstractClassAttribute>]
[<SealedAttribute>]
type RuntimeDetector = class end
The RuntimeDetector type exposes the following members.
Fields
| Name | Description |
---|
| IsMono |
Is true if we're running on a Mono VM. false otherwise.
|
TopRemarks
Mostly used for detecting Mono right now because certain features, i.e. IPV6 support, aren't
fully supported on it. Can also be used for picking platform-specific implementations of things
such as Akka.Cluster.Metrics implementations.
See Also