Skip to content

Commit 3f5afb6

Browse files
chore: change visibility of QueryString() and AddDefaultHeaders
1 parent 9c7927a commit 3f5afb6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Orb/Core/ParamsBase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ JsonElement element
151151
}
152152
}
153153

154-
protected string QueryString(ClientOptions options)
154+
internal string QueryString(ClientOptions options)
155155
{
156156
NameValueCollection collection = [];
157157
foreach (var item in this.RawQueryData)
@@ -184,7 +184,7 @@ protected string QueryString(ClientOptions options)
184184
return null;
185185
}
186186

187-
protected static void AddDefaultHeaders(HttpRequestMessage request, ClientOptions options)
187+
internal static void AddDefaultHeaders(HttpRequestMessage request, ClientOptions options)
188188
{
189189
foreach (var header in defaultHeaders)
190190
{

0 commit comments

Comments
 (0)