Show / Hide Table of Contents

Class SystemVersion

Represents a handler for the server or client Mta version and Os info

Inheritance
Object
SystemVersion
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: Slipe.Shared.Helpers
Assembly: SlipeShared.dll
Syntax
public class SystemVersion

Constructors

| Improve this Doc View Source

SystemVersion()

Create a new version object

Declaration
public SystemVersion()

Properties

| Improve this Doc View Source

Mta

The MTA server or client version (depending where the function was called) in textual form, e.g. "1.0"

Declaration
public string Mta { get; }
Property Value
Type Description
String
| Improve this Doc View Source

Name

The full MTA product name, either "MTA:SA Server" or "MTA:SA Client".

Declaration
public string Name { get; }
Property Value
Type Description
String
| Improve this Doc View Source

Netcode

The netcode version number.

Declaration
public string Netcode { get; }
Property Value
Type Description
String
| Improve this Doc View Source

Number

The MTA server or client version (depending where the function was called) in pure numerical form, e.g. "256"

Declaration
public int Number { get; }
Property Value
Type Description
Int32
| Improve this Doc View Source

Os

The operating system on which the server or client is running

Declaration
public string Os { get; }
Property Value
Type Description
String
| Improve this Doc View Source

Sortable

A 15 character sortable version string

Declaration
public string Sortable { get; }
Property Value
Type Description
String
| Improve this Doc View Source

Tag

The build tag (from 1.0.3 onwards). Contains infomation about the underlying version used

Declaration
public string Tag { get; }
Property Value
Type Description
String
| Improve this Doc View Source

Type

The type of build

Declaration
public string Type { get; }
Property Value
Type Description
String
  • Improve this Doc
  • View Source
Back to top Generated by DocFX