Winify – Diff between revs 30 and 44

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 30 Rev 44
Line 7... Line 7...
7 { 7 {
8 [XmlRoot(Namespace = "urn:winify-configuration-schema", ElementName = "Configuration")] 8 [XmlRoot(Namespace = "urn:winify-configuration-schema", ElementName = "Configuration")]
9 public class Configuration : INotifyPropertyChanged 9 public class Configuration : INotifyPropertyChanged
10 { 10 {
11 private bool _launchOnBoot; 11 private bool _launchOnBoot;
-   12 private bool _ignoreSelfSignedCertificates;
Line 12... Line 13...
12   13  
13 public bool LaunchOnBoot 14 public bool LaunchOnBoot
14 { 15 {
15 get => _launchOnBoot; 16 get => _launchOnBoot;
Line 19... Line 20...
19 _launchOnBoot = value; 20 _launchOnBoot = value;
20 OnPropertyChanged(); 21 OnPropertyChanged();
21 } 22 }
22 } 23 }
Line -... Line 24...
-   24  
-   25 public bool IgnoreSelfSignedCertificates
-   26 {
-   27 get => _ignoreSelfSignedCertificates;
-   28 set
-   29 {
-   30 if (value == _ignoreSelfSignedCertificates) return;
-   31 _ignoreSelfSignedCertificates = value;
-   32 OnPropertyChanged();
-   33 }
-   34 }
23   35  
Line 24... Line 36...
24 public event PropertyChangedEventHandler PropertyChanged; 36 public event PropertyChangedEventHandler PropertyChanged;
25   37  
26 [NotifyPropertyChangedInvocator] 38 [NotifyPropertyChangedInvocator]