ServerVersion Constructors

Definition

Overloads

ServerVersion(Version)

Initializes a new instance of this class using the specified Version object.

ServerVersion(Int32, Int32, Int32, Int32)

Initializes a new instance of this class using the specified version components.

ServerVersion(Version)

Initializes a new instance of this class using the specified Version object.

public ServerVersion (Version ver);
new Microsoft.Hpc.Scheduler.ServerVersion : Version -> Microsoft.Hpc.Scheduler.ServerVersion
Public Sub New (ver As Version)

Parameters

ver
Version

A Version object used to initialize the contents of this class.

Applies to

ServerVersion(Int32, Int32, Int32, Int32)

Initializes a new instance of this class using the specified version components.

public ServerVersion (int major, int minor, int build, int revision);
new Microsoft.Hpc.Scheduler.ServerVersion : int * int * int * int -> Microsoft.Hpc.Scheduler.ServerVersion
Public Sub New (major As Integer, minor As Integer, build As Integer, revision As Integer)

Parameters

major
Int32

The major number.

minor
Int32

The minor number.

build
Int32

The build number or -1 if not defined.

revision
Int32

The revision number or -1 if not defined.

Applies to