3 types derived from GenericIdentity
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\IdentityModel\Claims\X509CertificateClaimSet.cs (1)
488internal class X509Identity : GenericIdentity, IDisposable
System.Net.HttpListener (1)
System\Net\HttpListenerBasicIdentity.cs (1)
8public class HttpListenerBasicIdentity : GenericIdentity
System.ServiceModel.Primitives (1)
System\IdentityModel\Claims\X509CertificateClaimSet.cs (1)
521internal class X509Identity : GenericIdentity, IDisposable
12 instantiations of GenericIdentity
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\IdentityModel\SecurityUtils.cs (2)
66return new GenericIdentity(name, authenticationType); 71return new GenericIdentity(name);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityUtils.cs (1)
273return new GenericIdentity(name);
dotnet-user-jwts (1)
Helpers\JwtIssuer.cs (1)
27var identity = new GenericIdentity(options.Name);
System.Net.Security (2)
System\Net\NegotiateAuthenticationPal.Unix.cs (1)
147result = new GenericIdentity(name ?? string.Empty, protocol);
System\Net\Security\NegotiateAuthentication.cs (1)
178return new GenericIdentity(TargetName ?? string.Empty, Package);
System.Security.Claims (2)
System\Security\Claims\GenericIdentity.cs (1)
47return new GenericIdentity(this);
System\Security\Claims\GenericPrincipal.cs (1)
86private static GenericPrincipal GetDefaultInstance() => new GenericPrincipal(new GenericIdentity(string.Empty), new string[] { string.Empty });
System.ServiceModel.Primitives (4)
System\IdentityModel\SecurityUtils.cs (3)
36s_anonymousIdentity = new GenericIdentity(string.Empty); 62return new GenericIdentity(name, authenticationType); 67return new GenericIdentity(name);
System\ServiceModel\Security\SecurityUtils.cs (1)
313return new GenericIdentity(name);
7 references to GenericIdentity
dotnet-user-jwts (1)
Helpers\JwtIssuer.cs (1)
27var identity = new GenericIdentity(options.Name);
mscorlib (1)
src\runtime\src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
1044[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Principal.GenericIdentity))]
netstandard (1)
netstandard.cs (1)
1992[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Principal.GenericIdentity))]
System.Security.Claims (2)
System\Security\Claims\GenericIdentity.cs (2)
35protected GenericIdentity(GenericIdentity identity) 43/// Returns a new instance of <see cref="GenericIdentity"/> with values copied from this object.
System.ServiceModel.NetFramingBase (2)
System\ServiceModel\Channels\WindowsStreamSecurityUpgradeProvider.cs (2)
148GenericIdentity remoteIdentity = (GenericIdentity)negotiateStream.RemoteIdentity;