AliDDNS/net.nutcore.aliddns/AutoUpdater/AutoUpdateHelper/RemoteFile.cs

51 lines
1.6 KiB
C#
Raw Normal View History

2021-01-03 22:24:37 +08:00
/*****************************************************************
* Copyright (C) Knights Warrior Corporation. All rights reserved.
*
* Author: 殿Knights Warrior
* Email: KnightsWarrior@msn.com
* Website: http://www.cnblogs.com/KnightsWarrior/ https://github.com/knightswarrior
* Create Date: 5/8/2010
* Usage:
*
* RevisionHistory
* Date Author Description
*
*****************************************************************/
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml;
namespace KnightsWarriorAutoupdater
{
public class RemoteFile
{
#region The private fields
private string path = "";
private string url = "";
private string lastver = "";
private int size = 0;
private bool needRestart = false;
#endregion
#region The public property
public string Path { get { return path; } }
public string Url { get { return url; } }
public string LastVer { get { return lastver; } }
public int Size { get { return size; } }
public bool NeedRestart { get { return needRestart; } }
#endregion
#region The constructor of AutoUpdater
public RemoteFile(XmlNode node)
{
this.path = node.Attributes["path"].Value;
this.url = node.Attributes["url"].Value;
this.lastver = node.Attributes["lastver"].Value;
this.size = Convert.ToInt32(node.Attributes["size"].Value);
this.needRestart = Convert.ToBoolean(node.Attributes["needRestart"].Value);
}
#endregion
}
}