6 references to DistinguishedNameSeparatorRegex
Microsoft.AspNetCore.Authentication.Negotiate (2)
Internal\LdapAdapter.cs (2)
69
var groupCN =
DistinguishedNameSeparatorRegex
.Split(groupDN)[0].Substring("CN=".Length);
127
var nestedGroupCN =
DistinguishedNameSeparatorRegex
.Split(nestedGroupDN)[0].Substring("CN=".Length);
Microsoft.AspNetCore.Authentication.Negotiate.Test (4)
LdapAdapterTests.cs (4)
11
var parts = LdapAdapter.
DistinguishedNameSeparatorRegex
.Split("Testing group - City");
19
var parts = LdapAdapter.
DistinguishedNameSeparatorRegex
.Split(@"Testing group\,City");
27
var parts = LdapAdapter.
DistinguishedNameSeparatorRegex
.Split("Testing group,City");
35
var parts = LdapAdapter.
DistinguishedNameSeparatorRegex
.Split(@"Testing group\\,City");