Skip to content

Commit 15dd1eb

Browse files
authored
Make browser APIs internal (#290)
These probably make sense to be public, but let's do that after they've been reviewed.
1 parent a422a3b commit 15dd1eb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Microsoft.AspNetCore.SystemWebAdapters/Adapters/IBrowserCapabilitiesFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace Microsoft.AspNetCore.SystemWebAdapters;
55

66
#if NET6_0_OR_GREATER
7-
public interface IBrowserCapabilitiesFactory
7+
internal interface IBrowserCapabilitiesFactory
88
{
99
IHttpBrowserCapabilityFeature Create(HttpRequestCore request);
1010
}

src/Microsoft.AspNetCore.SystemWebAdapters/Adapters/IHttpBrowserCapabilityFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace Microsoft.AspNetCore.SystemWebAdapters;
55

66
#if NET6_0_OR_GREATER
7-
public interface IHttpBrowserCapabilityFeature
7+
internal interface IHttpBrowserCapabilityFeature
88
{
99
string? this[string key] { get; }
1010
}

0 commit comments

Comments
 (0)