Class UpdateInfo
Encapsulates information about a concrete software update.
Inheritance
System.Object
UpdateInfo
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Sartorius.SAF.Infrastructure.SoftwareUpdate
Assembly: Sartorius.SAF.dll
Syntax
public class UpdateInfo
Constructors
View SourceUpdateInfo(String, Version, UpdateLocation)
Initializes a new instance of the UpdateInfo class.
Declaration
public UpdateInfo(string fileName, Version version, UpdateLocation fileLocation)
Parameters
Type | Name | Description |
---|---|---|
System.String | fileName | |
System.Version | version | |
UpdateLocation | fileLocation |
Properties
View SourceFileName
The file name of the software update.
Declaration
public string FileName { get; }
Property Value
Type | Description |
---|---|
System.String |
UpdateLocation
The UpdateLocation of the file.
Declaration
public UpdateLocation UpdateLocation { get; }
Property Value
Type | Description |
---|---|
UpdateLocation |
Version
The Version of the software update.
Declaration
public Version Version { get; }
Property Value
Type | Description |
---|---|
System.Version |