Skip to content

Commit 696fe94

Browse files
Fix namespace for DotNET samples
1 parent 26a5c58 commit 696fe94

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

DotNET/Endpoint Examples/Multipart Payload/decrypted-pdf.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222

2323

24-
using (var httpClient = new HttpClient { BaseAddress = new Uri("https://api.pdfrest.com") })
24+
namespace Samples.EndpointExamples.MultipartPayload
2525
{
2626
public static class DecryptedPdf
2727
{

DotNET/Endpoint Examples/Multipart Payload/encrypted-pdf.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222

2323

24-
using (var httpClient = new HttpClient { BaseAddress = new Uri("https://api.pdfrest.com") })
24+
namespace Samples.EndpointExamples.MultipartPayload
2525
{
2626
public static class EncryptedPdf
2727
{

DotNET/Endpoint Examples/Multipart Payload/pdf-with-redacted-text-preview.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424

2525

26-
using (var httpClient = new HttpClient { BaseAddress = new Uri("https://api.pdfrest.com") })
26+
namespace Samples.EndpointExamples.MultipartPayload
2727
{
2828
public static class PdfWithRedactedTextPreview
2929
{

0 commit comments

Comments
 (0)