From dcfc3f063165762c3487eb55d8b29d4b4a48bea5 Mon Sep 17 00:00:00 2001 From: sacOO7 Date: Thu, 18 Apr 2024 23:17:14 +0530 Subject: [PATCH] updated deprecation warnings for createTokenRequestObject --- src/IO.Ably.Shared/IAblyAuth.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/IO.Ably.Shared/IAblyAuth.cs b/src/IO.Ably.Shared/IAblyAuth.cs index a7998273e..903f9cd20 100644 --- a/src/IO.Ably.Shared/IAblyAuth.cs +++ b/src/IO.Ably.Shared/IAblyAuth.cs @@ -67,7 +67,7 @@ public interface IAblyAuth /// . If null a token request is generated from options passed when the client was created. /// . If null the default AuthOptions are used. /// signed token request. - [Obsolete("This method will be removed in a future version, please use CreateTokenRequestObjectAsync instead")] + [Obsolete("This method will be removed in a future version, please use CreateTokenRequestAsync instead")] Task CreateTokenRequestObjectAsync(TokenParams tokenParams = null, AuthOptions authOptions = null); /// @@ -116,7 +116,7 @@ public interface IAblyAuth /// . If null a token request is generated from options passed when the client was created. /// . If null the default AuthOptions are used. /// signed token request. - [Obsolete("This method will be removed in a future version, please use CreateTokenRequestObject instead")] + [Obsolete("This method will be removed in a future version, please use CreateTokenRequest instead")] TokenRequest CreateTokenRequestObject(TokenParams tokenParams = null, AuthOptions authOptions = null); } }