aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/TFS/SystemInformationModel.cs
blob: 5dde7374480d83a60425fdf78e404cce6f260bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;

namespace Tango.MachineStudio.UI.TFS
{
    public class SystemInformationModel
    {
        public String ApplicationVersion { get; set; }
        public String EmbeddedVersion { get; set; }
        public String UserName { get; set; }
        public String HostName { get; set; }
        public Machine Machine { get; set; }
        public String ConfigurationString { get; set; }
        public String LoadedHardwareConfigurationString { get; set; }
        public String LoadedProcessParametersString { get; set; }
    }
}
ldBeCasedCorrectly", MessageId = "Whitespace", Justification = "System.Xml also uses 'Whitespace'")] public bool ContainsOnlyWhitespace { get; set; } /// <inheritdoc/> public override void AcceptVisitor(IAXmlVisitor visitor) { visitor.VisitText(this); } /// <inheritdoc/> internal override bool UpdateDataFrom(AXmlObject source) { if (!base.UpdateDataFrom(source)) return false; AXmlText src = (AXmlText)source; if (this.EscapedValue != src.EscapedValue || this.Value != src.Value) { OnChanging(); this.EscapedValue = src.EscapedValue; this.Value = src.Value; OnChanged(); return true; } else { return false; } } /// <inheritdoc/> public override string ToString() { return string.Format(CultureInfo.InvariantCulture, "[{0} Text.Length={1}]", base.ToString(), this.EscapedValue.Length); } } }