4 types derived from EndpointIdentity
System.ServiceModel.Primitives (4)
netstandard.cs (4)
1095public partial class DnsEndpointIdentity : System.ServiceModel.EndpointIdentity 1123public partial class SpnEndpointIdentity : System.ServiceModel.EndpointIdentity 1128public partial class UpnEndpointIdentity : System.ServiceModel.EndpointIdentity 1132public partial class X509CertificateEndpointIdentity : System.ServiceModel.EndpointIdentity
16 references to EndpointIdentity
System.ServiceModel (1)
netstandard.cs (1)
152[assembly: TypeForwardedTo(typeof(EndpointIdentity))]
System.ServiceModel.NetFramingBase (8)
System\ServiceModel\Channels\FramingChannels.cs (3)
113private EndpointIdentity _remoteIdentity; 121EndpointIdentity ISecuritySession.RemoteIdentity 133_remoteIdentity = EndpointIdentity.CreateIdentity(identityClaim);
System\ServiceModel\Channels\SslStreamSecurityUpgradeProvider.cs (2)
430EndpointIdentity identity; 446private static Exception CreateIdentityCheckException(EndpointIdentity identity, AuthorizationContext authorizationContext, string errorString, EndpointAddress serviceReference)
System\ServiceModel\Channels\WindowsStreamSecurityUpgradeProvider.cs (3)
169EndpointIdentity identity; 205out EndpointIdentity identity) 230private void ValidateMutualAuth(EndpointIdentity expectedIdentity, NegotiateStream negotiateStream,
System.ServiceModel.Primitives (7)
netstandard.cs (7)
628public EndpointAddress(System.Uri uri, System.ServiceModel.EndpointIdentity identity, params System.ServiceModel.Channels.AddressHeader[] addressHeaders) { } 631public System.ServiceModel.EndpointIdentity Identity { get { return default; } } 650public System.ServiceModel.EndpointIdentity Identity { get { return default; } set { } } 663public static System.ServiceModel.EndpointIdentity CreateIdentity(System.IdentityModel.Claims.Claim identity) => default; 2253System.ServiceModel.EndpointIdentity RemoteIdentity { get; } 2354public abstract bool CheckAccess(System.ServiceModel.EndpointIdentity identity, System.IdentityModel.Policy.AuthorizationContext authContext); 2355public abstract bool TryGetIdentity(System.ServiceModel.EndpointAddress reference, out System.ServiceModel.EndpointIdentity identity);