Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit b941615

Browse files
Update namespace
1 parent 0c9177c commit b941615

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

clients/ConsoleClientWithBrowserAndDPoP/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System.Text.Json;
88
using System.Threading.Tasks;
99
using Serilog.Sinks.SystemConsole.Themes;
10-
using IdentityModel.DPoP;
10+
using IdentityModel.OidcClient.DPoP;
1111

1212
namespace ConsoleClientWithBrowserAndDPoP
1313
{

src/DPoP/DPoPExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Linq;
55
using System.Net.Http;
66

7-
namespace IdentityModel.DPoP;
7+
namespace IdentityModel.OidcClient.DPoP;
88

99
/// <summary>
1010
/// Extensions for HTTP request/response messages

src/DPoP/DPoPProof.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

44

5-
namespace IdentityModel.DPoP;
5+
namespace IdentityModel.OidcClient.DPoP;
66

77
/// <summary>
88
/// Models a DPoP proof token

src/DPoP/DPoPProofRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

4-
namespace IdentityModel.DPoP;
4+
namespace IdentityModel.OidcClient.DPoP;
55

66
/// <summary>
77
/// Models the request information to create a DPoP proof token

src/DPoP/DPoPProofTokenFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using System.Text;
1010
using System.Text.Json;
1111

12-
namespace IdentityModel.DPoP;
12+
namespace IdentityModel.OidcClient.DPoP;
1313

1414
/// <summary>
1515
/// Used to create DPoP proof tokens.

src/DPoP/JsonWebKeys.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Text.Json;
77
using Microsoft.IdentityModel.Tokens;
88

9-
namespace IdentityModel.DPoP;
9+
namespace IdentityModel.OidcClient.DPoP;
1010

1111
/// <summary>
1212
/// Helper to create JSON web keys.

src/DPoP/ProofTokenMessageHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Threading;
77
using System.Threading.Tasks;
88

9-
namespace IdentityModel.DPoP;
9+
namespace IdentityModel.OidcClient.DPoP;
1010

1111
/// <summary>
1212
/// Message handler to create and send DPoP proof tokens.

test/DPoPTests/DPoPTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using FluentAssertions;
55
using IdentityModel;
66
using IdentityModel.Client;
7-
using IdentityModel.DPoP;
7+
using IdentityModel.OidcClient.DPoP;
88
using Microsoft.AspNetCore.Authentication;
99
using Microsoft.Extensions.DependencyInjection;
1010
using Microsoft.Extensions.Options;

0 commit comments

Comments
 (0)