11/**
2- * Steamless - Copyright (c) 2015 - 2018 atom0s [atom0s@live.com]
2+ * Steamless - Copyright (c) 2015 - 2019 atom0s [atom0s@live.com]
33 *
44 * This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
55 * To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/ or send a letter to
@@ -36,42 +36,52 @@ public SteamlessOptions()
3636 this . KeepBindSection = false ;
3737 this . DumpPayloadToDisk = false ;
3838 this . DumpSteamDrmpToDisk = false ;
39+ this . UseExperimentalFeatures = false ;
3940 }
4041
4142 /// <summary>
4243 /// Gets or sets the verbose output option value.
4344 /// </summary>
4445 public bool VerboseOutput
4546 {
46- get { return this . Get < bool > ( "VerboseOutput" ) ; }
47- set { this . Set ( "VerboseOutput" , value ) ; }
47+ get => this . Get < bool > ( "VerboseOutput" ) ;
48+ set => this . Set ( "VerboseOutput" , value ) ;
4849 }
4950
5051 /// <summary>
5152 /// Gets or sets the keep bind section option value.
5253 /// </summary>
5354 public bool KeepBindSection
5455 {
55- get { return this . Get < bool > ( "KeepBindSection" ) ; }
56- set { this . Set ( "KeepBindSection" , value ) ; }
56+ get => this . Get < bool > ( "KeepBindSection" ) ;
57+ set => this . Set ( "KeepBindSection" , value ) ;
5758 }
5859
5960 /// <summary>
6061 /// Gets or sets the dump payload to disk option value.
6162 /// </summary>
6263 public bool DumpPayloadToDisk
6364 {
64- get { return this . Get < bool > ( "DumpPayloadToDisk" ) ; }
65- set { this . Set ( "DumpPayloadToDisk" , value ) ; }
65+ get => this . Get < bool > ( "DumpPayloadToDisk" ) ;
66+ set => this . Set ( "DumpPayloadToDisk" , value ) ;
6667 }
6768
6869 /// <summary>
6970 /// Gets or sets the dump SteamDRMP.dll to disk option value.
7071 /// </summary>
7172 public bool DumpSteamDrmpToDisk
7273 {
73- get { return this . Get < bool > ( "DumpSteamDrmpToDisk" ) ; }
74- set { this . Set ( "DumpSteamDrmpToDisk" , value ) ; }
74+ get => this . Get < bool > ( "DumpSteamDrmpToDisk" ) ;
75+ set => this . Set ( "DumpSteamDrmpToDisk" , value ) ;
76+ }
77+
78+ /// <summary>
79+ /// Gets or sets the use experimental features option value.
80+ /// </summary>
81+ public bool UseExperimentalFeatures
82+ {
83+ get => this . Get < bool > ( "UseExperimentalFeatures" ) ;
84+ set => this . Set ( "UseExperimentalFeatures" , value ) ;
7585 }
7686 }
7787}
0 commit comments