Skip to content

Commit 1a68951

Browse files
authored
Make ISessionSerializer internal (#573)
As part of getting changeset session state serialization working, we need to make changes to this interface. It's not what we expect people to use now for implementing session serialization customizations (instead use ISessionKeySerializer), so until we know what that will look like, it'll be internal.
1 parent 880657b commit 1a68951

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace Microsoft.AspNetCore.SystemWebAdapters.SessionState.Serialization;
99

10-
public interface ISessionSerializer
10+
internal interface ISessionSerializer
1111
{
1212
Task<ISessionState?> DeserializeAsync(Stream stream, CancellationToken token);
1313

0 commit comments

Comments
 (0)