aboutsummaryrefslogtreecommitdiff
path: root/lib/Net.Rest.Client/src
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Net.Rest.Client/src')
-rw-r--r--lib/Net.Rest.Client/src/OAuth2/O2ErrorResponseMessage.cs4
-rw-r--r--lib/Net.Rest.Client/src/OAuth2/OAuth2AuthenticationException.cs2
-rw-r--r--lib/Net.Rest.Client/src/OAuth2/OAuth2Authenticator.cs7
-rw-r--r--lib/Net.Rest.Client/src/RestClientPool.cs2
-rw-r--r--lib/Net.Rest.Client/src/VNLib.Net.Rest.Client.csproj3
5 files changed, 7 insertions, 11 deletions
diff --git a/lib/Net.Rest.Client/src/OAuth2/O2ErrorResponseMessage.cs b/lib/Net.Rest.Client/src/OAuth2/O2ErrorResponseMessage.cs
index 151c575..f2ffbaa 100644
--- a/lib/Net.Rest.Client/src/OAuth2/O2ErrorResponseMessage.cs
+++ b/lib/Net.Rest.Client/src/OAuth2/O2ErrorResponseMessage.cs
@@ -1,5 +1,5 @@
/*
-* Copyright (c) 2022 Vaughn Nugent
+* Copyright (c) 2023 Vaughn Nugent
*
* Library: VNLib
* Package: VNLib.Net.Rest.Client
@@ -56,7 +56,7 @@ namespace VNLib.Net.Rest.Client.OAuth2
/// <param name="description">The OAuth2 error description</param>
public O2ErrorResponseMessage(string code, string description)
{
- this.ErrorCode = code;
+ ErrorCode = code;
ErrorDescription = description;
}
diff --git a/lib/Net.Rest.Client/src/OAuth2/OAuth2AuthenticationException.cs b/lib/Net.Rest.Client/src/OAuth2/OAuth2AuthenticationException.cs
index 7176093..96242f2 100644
--- a/lib/Net.Rest.Client/src/OAuth2/OAuth2AuthenticationException.cs
+++ b/lib/Net.Rest.Client/src/OAuth2/OAuth2AuthenticationException.cs
@@ -1,5 +1,5 @@
/*
-* Copyright (c) 2022 Vaughn Nugent
+* Copyright (c) 2023 Vaughn Nugent
*
* Library: VNLib
* Package: VNLib.Net.Rest.Client
diff --git a/lib/Net.Rest.Client/src/OAuth2/OAuth2Authenticator.cs b/lib/Net.Rest.Client/src/OAuth2/OAuth2Authenticator.cs
index b978404..61af299 100644
--- a/lib/Net.Rest.Client/src/OAuth2/OAuth2Authenticator.cs
+++ b/lib/Net.Rest.Client/src/OAuth2/OAuth2Authenticator.cs
@@ -1,5 +1,5 @@
/*
-* Copyright (c) 2022 Vaughn Nugent
+* Copyright (c) 2023 Vaughn Nugent
*
* Library: VNLib
* Package: VNLib.Net.Rest.Client
@@ -23,7 +23,6 @@
*/
using System;
-using System.Net;
using System.Text.Json;
using System.Threading;
using System.Threading.Tasks;
@@ -34,8 +33,6 @@ using RestSharp.Authenticators;
using VNLib.Utils;
using VNLib.Utils.Extensions;
-#nullable enable
-
namespace VNLib.Net.Rest.Client.OAuth2
{
/// <summary>
@@ -72,7 +69,7 @@ namespace VNLib.Net.Rest.Client.OAuth2
_tokenLock = new(1, 1);
}
- async ValueTask IAuthenticator.Authenticate(RestClient client, RestRequest request)
+ async ValueTask IAuthenticator.Authenticate(IRestClient client, RestRequest request)
{
//Wait for access to the token incase another thread is updating it
using SemSlimReleaser releaser = await _tokenLock.GetReleaserAsync(CancellationToken.None);
diff --git a/lib/Net.Rest.Client/src/RestClientPool.cs b/lib/Net.Rest.Client/src/RestClientPool.cs
index 2d61203..5c3d401 100644
--- a/lib/Net.Rest.Client/src/RestClientPool.cs
+++ b/lib/Net.Rest.Client/src/RestClientPool.cs
@@ -29,8 +29,6 @@ using RestSharp.Authenticators;
using VNLib.Utils.Memory.Caching;
-#nullable enable
-
namespace VNLib.Net.Rest.Client
{
/// <summary>
diff --git a/lib/Net.Rest.Client/src/VNLib.Net.Rest.Client.csproj b/lib/Net.Rest.Client/src/VNLib.Net.Rest.Client.csproj
index d25a307..b6b2bd5 100644
--- a/lib/Net.Rest.Client/src/VNLib.Net.Rest.Client.csproj
+++ b/lib/Net.Rest.Client/src/VNLib.Net.Rest.Client.csproj
@@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
+ <Nullable>enable</Nullable>
<AssemblyName>VNLib.Net.Rest.Client</AssemblyName>
<RootNamespace>VNLib.Net.Rest.Client</RootNamespace>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
@@ -41,7 +42,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
- <PackageReference Include="RestSharp" Version="109.0.1" />
+ <PackageReference Include="RestSharp" Version="110.2.0" />
</ItemGroup>
<ItemGroup>