We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9631140 commit 0e4e8a5Copy full SHA for 0e4e8a5
Scripts/Utilities/Utility.cs
@@ -1309,7 +1309,7 @@ public bool IsTokenExpired
1309
public class SimpleGet: IDisposable
1310
{
1311
public string Result { get; set; }
1312
- public bool IsComplete { get; set; } = false;
+ public bool IsComplete { get; set; }
1313
1314
private string _url = null;
1315
private string _username = null;
@@ -1318,6 +1318,8 @@ public class SimpleGet: IDisposable
1318
1319
public SimpleGet(string url, string username = null, string password = null)
1320
1321
+ IsComplete = false;
1322
+
1323
if (string.IsNullOrEmpty(url))
1324
throw new ArgumentNullException("url is required for SimpleGet()");
1325
0 commit comments