We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7eded4 commit 6f20b81Copy full SHA for 6f20b81
src/Stripe.net/Services/_base/Service.cs
@@ -60,7 +60,9 @@ public IStripeClient Client
60
61
internal ApiRequestor Requestor
62
{
63
- get => this.requestor;
+#pragma warning disable CS0618 // Type or member is obsolete
64
+ get => this.requestor ?? new ApiRequestorAdapter(this.Client);
65
+#pragma warning restore CS0618 // Type or member is obsolete
66
}
67
68
internal T Request<T>(
0 commit comments