mirror of
https://github.com/bitwarden/server.git
synced 2025-07-06 18:42:49 -05:00
15 lines
294 B
C#
15 lines
294 B
C#
namespace Bit.Core.Enums;
|
|
|
|
public enum Saml2NameIdFormat : byte
|
|
{
|
|
NotConfigured = 0,
|
|
Unspecified = 1,
|
|
EmailAddress = 2,
|
|
X509SubjectName = 3,
|
|
WindowsDomainQualifiedName = 4,
|
|
KerberosPrincipalName = 5,
|
|
EntityIdentifier = 6,
|
|
Persistent = 7,
|
|
Transient = 8,
|
|
}
|