AuthenticationSchemes flags
Nobody has claimed this yet.
- Dominant language
- C#
- Stars
- 6.1k
- Forks
- 1.7k
- PR merge metrics
- No merged PRs in 30d
Description
The enum AuthenticationSchemes has [Flags] attribute. This implies you can use it as a bitflags like
new WebSocketServer(port)
{
AuthenticationSchemes = AuthenticationSchemes.Basic|AuthenticationSchemes.Digest,
}
However the implementation does not support this so I would recommmend removing [Flags] from enum AuthenticationSchemes.
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by locating the AuthenticationSchemes enum declaration and checking how WebSocketServer uses its values. Confirm that combined Basic and Digest flags are unsupported, then remove the [Flags] attribute and verify that the enum documentation and behavior no longer imply bitflag support.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- csharp
- Domain
- backend
- Issue type
- Bug
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 45/100