Loading WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/AppDeployment.cs +1 −1 Original line number Diff line number Diff line Loading @@ -36,7 +36,7 @@ namespace Microsoft.Tools.WindowsDevicePortal using (HttpClient client = new HttpClient(handler)) { this.ApplyCsrfToken(client, "GET"); this.ApplyHttpHeaders(client, "GET"); Task<HttpResponseMessage> getTask = TestHelpers.MockHttpResponder.GetAsync(uri); await getTask.ConfigureAwait(false); Loading WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/RestDelete.cs +1 −1 Original line number Diff line number Diff line Loading @@ -30,7 +30,7 @@ namespace Microsoft.Tools.WindowsDevicePortal using (HttpClient client = new HttpClient(requestSettings)) { this.ApplyCsrfToken(client, "DELETE"); this.ApplyHttpHeaders(client, "DELETE"); Task<HttpResponseMessage> deleteTask = TestHelpers.MockHttpResponder.DeleteAsync(uri); await deleteTask.ConfigureAwait(false); Loading WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/RestGet.cs +1 −1 Original line number Diff line number Diff line Loading @@ -43,7 +43,7 @@ namespace Microsoft.Tools.WindowsDevicePortal using (HttpClient client = new HttpClient(handler)) { this.ApplyCsrfToken(client, "GET"); this.ApplyHttpHeaders(client, "GET"); Task<HttpResponseMessage> getTask = TestHelpers.MockHttpResponder.GetAsync(uri); await getTask.ConfigureAwait(false); Loading WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/RestPost.cs +1 −1 Original line number Diff line number Diff line Loading @@ -30,7 +30,7 @@ namespace Microsoft.Tools.WindowsDevicePortal using (HttpClient client = new HttpClient(requestSettings)) { this.ApplyCsrfToken(client, "POST"); this.ApplyHttpHeaders(client, "POST"); Task<HttpResponseMessage> postTask = TestHelpers.MockHttpResponder.PostAsync(uri, null); await postTask.ConfigureAwait(false); Loading WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/RestPut.cs +1 −1 Original line number Diff line number Diff line Loading @@ -33,7 +33,7 @@ namespace Microsoft.Tools.WindowsDevicePortal using (HttpClient client = new HttpClient(requestSettings)) { this.ApplyCsrfToken(client, "PUT"); this.ApplyHttpHeaders(client, "PUT"); // Send the request Task<HttpResponseMessage> putTask = TestHelpers.MockHttpResponder.PutAsync(uri, body); Loading Loading
WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/AppDeployment.cs +1 −1 Original line number Diff line number Diff line Loading @@ -36,7 +36,7 @@ namespace Microsoft.Tools.WindowsDevicePortal using (HttpClient client = new HttpClient(handler)) { this.ApplyCsrfToken(client, "GET"); this.ApplyHttpHeaders(client, "GET"); Task<HttpResponseMessage> getTask = TestHelpers.MockHttpResponder.GetAsync(uri); await getTask.ConfigureAwait(false); Loading
WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/RestDelete.cs +1 −1 Original line number Diff line number Diff line Loading @@ -30,7 +30,7 @@ namespace Microsoft.Tools.WindowsDevicePortal using (HttpClient client = new HttpClient(requestSettings)) { this.ApplyCsrfToken(client, "DELETE"); this.ApplyHttpHeaders(client, "DELETE"); Task<HttpResponseMessage> deleteTask = TestHelpers.MockHttpResponder.DeleteAsync(uri); await deleteTask.ConfigureAwait(false); Loading
WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/RestGet.cs +1 −1 Original line number Diff line number Diff line Loading @@ -43,7 +43,7 @@ namespace Microsoft.Tools.WindowsDevicePortal using (HttpClient client = new HttpClient(handler)) { this.ApplyCsrfToken(client, "GET"); this.ApplyHttpHeaders(client, "GET"); Task<HttpResponseMessage> getTask = TestHelpers.MockHttpResponder.GetAsync(uri); await getTask.ConfigureAwait(false); Loading
WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/RestPost.cs +1 −1 Original line number Diff line number Diff line Loading @@ -30,7 +30,7 @@ namespace Microsoft.Tools.WindowsDevicePortal using (HttpClient client = new HttpClient(requestSettings)) { this.ApplyCsrfToken(client, "POST"); this.ApplyHttpHeaders(client, "POST"); Task<HttpResponseMessage> postTask = TestHelpers.MockHttpResponder.PostAsync(uri, null); await postTask.ConfigureAwait(false); Loading
WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/RestPut.cs +1 −1 Original line number Diff line number Diff line Loading @@ -33,7 +33,7 @@ namespace Microsoft.Tools.WindowsDevicePortal using (HttpClient client = new HttpClient(requestSettings)) { this.ApplyCsrfToken(client, "PUT"); this.ApplyHttpHeaders(client, "PUT"); // Send the request Task<HttpResponseMessage> putTask = TestHelpers.MockHttpResponder.PutAsync(uri, body); Loading