Class UnixSystemGeneral
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents general information about a unix system.
public class UnixSystemGeneral : BaseTypeSection
- Inheritance
-
UnixSystemGeneral
Constructors
UnixSystemGeneral()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.UnixSystemGeneral class.
public UnixSystemGeneral()
Properties
IPForwarding
Gets or sets whether IP forwarding is enabled on this Unix system.
public BooleanOption IPForwarding { get; set; }
Property Value
KernelVersion
Gets or sets the version of the kernel.
public string KernelVersion { get; set; }
Property Value
Location
Gets or sets the location string assigned to the device.
public string Location { get; set; }
Property Value
Motherboard
Gets or sets information about the motherboard and BIOS of the Unix machine.
public UnixMotherboardInformation Motherboard { get; set; }
Property Value
ObjectID
Gets or sets the SNMP object ID assigned to this device.
public string ObjectID { get; set; }
Property Value
OperatingSystemVersion
Gets or sets the operating system version for example "Fedora release 16 (Verne)".
public string OperatingSystemVersion { get; set; }
Property Value
PlatformType
Gets or sets the type of operating system - for example "Linux" or "FreeBSD".
public UnixPlatformType PlatformType { get; set; }
Property Value
PlatformTypeString
Gets the display name of the running platform.
public string PlatformTypeString { get; set; }
Property Value
Processors
Gets or sets the processors found in this Unix machine.
public SerializableStringCollection Processors { get; set; }
Property Value
- SerializableStringCollection
SystemDescription
Gets or sets the system assigned description.
public string SystemDescription { get; set; }
Property Value
TotalMemory
Gets or sets the total memory found in the system in bytes.
public int TotalMemory { get; set; }
Property Value
TotalMemoryString
Gets the total memory found in the system in a human readable format.
public string TotalMemoryString { get; set; }
Property Value
Methods
FromXml(string)
Returns the CENTREL.XIA.Configuration.Types.UnixSystemGeneral from the specified XML data.
public static UnixSystemGeneral FromXml(string xml)
Parameters
xml
stringThe XML representation of the Unix System general settings.
Returns
- UnixSystemGeneral
A CENTREL.XIA.Configuration.Types.UnixSystemGeneral from the specified XML.