ServerVersion Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.