Class IgniteProductVersion
Inheritance
IgniteProductVersion
Assembly: Apache.Ignite.Core.dll
Syntax
[SuppressMessage("Microsoft.Design", "CA1036:OverrideMethodsOnComparableTypes")]
public class IgniteProductVersion : IEquatable<IgniteProductVersion>, IComparable<IgniteProductVersion>
Constructors
IgniteProductVersion(byte, byte, byte, string, DateTime, byte[])
Declaration
public IgniteProductVersion(byte major, byte minor, byte maintenance, string stage, DateTime releaseDate, byte[] revHash)
Parameters
| Type |
Name |
Description |
| byte |
major |
Major version number.
|
| byte |
minor |
Minor version number.
|
| byte |
maintenance |
Maintenance version number.
|
| string |
stage |
Stage of development.
|
| DateTime |
releaseDate |
Revision date.
|
| byte[] |
revHash |
Revision hash.
|
Properties
Maintenance
Gets the maintenance version number.
Declaration
public byte Maintenance { get; }
Property Value
Major
Gets the major version number.
Declaration
public byte Major { get; }
Property Value
Minor
Gets the minor version number.
Declaration
public byte Minor { get; }
Property Value
ReleaseDate
Declaration
public DateTime ReleaseDate { get; }
Property Value
RevisionHash
Declaration
[SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")]
public byte[] RevisionHash { get; }
Property Value
Stage
Gets the stage of development.
Declaration
public string Stage { get; }
Property Value
Methods
CompareTo(IgniteProductVersion)
Declaration
public int CompareTo(IgniteProductVersion other)
Parameters
Returns
Equals(IgniteProductVersion)
Declaration
public bool Equals(IgniteProductVersion other)
Parameters
Returns
Equals(object)
Declaration
public override bool Equals(object obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
ToString()
Declaration
[SuppressMessage("Microsoft.Globalization", "CA1308:NormalizeStringsToUppercase")]
[SuppressMessage("Microsoft.Globalization", "CA1307:SpecifyStringComparison", Justification = "Not available on .NET FW")]
public override string ToString()
Returns
Overrides
Implements