4 types derived from EndpointIdentity
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\DnsEndpointIdentity.cs (1)
13public class DnsEndpointIdentity : EndpointIdentity
FrameworkFork\System.ServiceModel\System\ServiceModel\SpnEndpointIdentity.cs (1)
12public class SpnEndpointIdentity : EndpointIdentity
FrameworkFork\System.ServiceModel\System\ServiceModel\UpnEndpointIdentity.cs (1)
19public class UpnEndpointIdentity : EndpointIdentity
FrameworkFork\System.ServiceModel\System\ServiceModel\X509CertificateEndpointIdentity.cs (1)
15public class X509CertificateEndpointIdentity : EndpointIdentity
62 references to EndpointIdentity
dotnet-svcutil-lib (62)
CodeDomFixup\MethodCreationHelper.cs (1)
2138EndpointIdentity identity = serviceEndpoint.Address.Identity;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingChannels.cs (3)
143private EndpointIdentity _remoteIdentity; 151EndpointIdentity ISecuritySession.RemoteIdentity 162_remoteIdentity = EndpointIdentity.CreateIdentity(
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SslStreamSecurityUpgradeProvider.cs (2)
29private EndpointIdentity _identity; 78public override EndpointIdentity Identity
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\StreamSecurityUpgradeProvider.cs (1)
19public abstract EndpointIdentity Identity
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\WindowsStreamSecurityUpgradeProvider.cs (2)
27private EndpointIdentity _identity; 70public override EndpointIdentity Identity
FrameworkFork\System.ServiceModel\System\ServiceModel\Diagnostics\SecurityTraceRecordHelper.cs (3)
27internal static void TraceIdentityVerificationSuccess(EventTraceActivity eventTraceActivity, EndpointIdentity identity, Claim claim, Type identityVerifier) 31internal static void TraceIdentityVerificationFailure(EndpointIdentity identity, AuthorizationContext authContext, Type identityVerifier) 35internal static void TraceIdentityDeterminationSuccess(EndpointAddress epr, EndpointIdentity identity, Type identityVerifier)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\EndpointDispatcher.cs (2)
62EndpointIdentity identity = listener.GetProperty<EndpointIdentity>();
FrameworkFork\System.ServiceModel\System\ServiceModel\EndpointAddress.cs (21)
74private EndpointIdentity _identity; 86private EndpointAddress(AddressingVersion version, Uri uri, EndpointIdentity identity, AddressHeaderCollection headers, XmlBuffer buffer, int metadataSection, int extensionSection, int pspSection) 100Init(u, (EndpointIdentity)null, (AddressHeaderCollection)null, null, -1, -1, -1); 104: this(uri, (EndpointIdentity)null, addressHeaders) 108public EndpointAddress(Uri uri, EndpointIdentity identity, params AddressHeader[] addressHeaders) 118public EndpointAddress(Uri uri, EndpointIdentity identity, AddressHeaderCollection headers) 133internal EndpointAddress(Uri uri, EndpointIdentity identity, AddressHeaderCollection headers, XmlDictionaryReader metadataReader, XmlDictionaryReader extensionReader, XmlDictionaryReader pspReader) 143EndpointIdentity ident2; 163public EndpointAddress(Uri uri, EndpointIdentity identity, AddressHeaderCollection headers, XmlDictionaryReader metadataReader, XmlDictionaryReader extensionReader) 168private void Init(Uri uri, EndpointIdentity identity, AddressHeader[] headers) 180private void Init(Uri uri, EndpointIdentity identity, AddressHeaderCollection headers, XmlBuffer buffer, int metadataSection, int extensionSection, int pspSection) 185private void Init(AddressingVersion version, Uri uri, EndpointIdentity identity, AddressHeaderCollection headers, XmlBuffer buffer, int metadataSection, int extensionSection, int pspSection) 270public EndpointIdentity Identity 661EndpointIdentity identity; 693internal static XmlBuffer ReadExtensions(XmlDictionaryReader reader, AddressingVersion version, XmlBuffer buffer, out EndpointIdentity identity, out int section) 712identity = EndpointIdentity.ReadIdentity(reader); 747private static bool ReadContentsFrom200408(XmlDictionaryReader reader, out Uri uri, out AddressHeaderCollection headers, out EndpointIdentity identity, out XmlBuffer buffer, out int metadataSection, out int extensionSection, out int pspSection) 903private static bool ReadContentsFrom10(XmlDictionaryReader reader, out Uri uri, out AddressHeaderCollection headers, out EndpointIdentity identity, out XmlBuffer buffer, out int metadataSection, out int extensionSection) 1263private EndpointIdentity _identity; 1300public EndpointIdentity Identity 1367EndpointIdentity identity;
FrameworkFork\System.ServiceModel\System\ServiceModel\EndpointIdentity.cs (8)
49public static EndpointIdentity CreateIdentity(Claim identity) 56public static EndpointIdentity CreateDnsIdentity(string dnsName) 61public static EndpointIdentity CreateSpnIdentity(string spnName) 66public static EndpointIdentity CreateUpnIdentity(string upnName) 84EndpointIdentity otherIdentity = obj as EndpointIdentity; 112internal static EndpointIdentity ReadIdentity(XmlDictionaryReader reader) 117EndpointIdentity readIdentity = null;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ClientCredentialsSecurityTokenManager.cs (1)
54EndpointIdentity identity;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\IdentityVerifier.cs (9)
29public abstract bool CheckAccess(EndpointIdentity identity, AuthorizationContext authContext); 31public abstract bool TryGetIdentity(EndpointAddress reference, out EndpointIdentity identity); 42internal bool TryGetIdentity(EndpointAddress reference, Uri via, out EndpointIdentity identity) 70EndpointIdentity identity; 87private Exception CreateIdentityCheckException(EndpointIdentity identity, AuthorizationContext authorizationContext, string errorString, EndpointAddress serviceReference) 158public override bool TryGetIdentity(EndpointAddress reference, out EndpointIdentity identity) 182private EndpointIdentity TryCreateDnsIdentity(EndpointAddress reference) 189return EndpointIdentity.CreateDnsIdentity(toAddress.DnsSafeHost); 206public override bool CheckAccess(EndpointIdentity identity, AuthorizationContext authContext)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ISecuritySession.cs (1)
12EndpointIdentity RemoteIdentity { get; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityProtocolFactory.cs (1)
704public virtual EndpointIdentity GetIdentityOfSelf()
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityUtils.cs (7)
276internal static EndpointIdentity CreateWindowsIdentity() 281internal static EndpointIdentity CreateWindowsIdentity(NetworkCredential serverCredential) 294return EndpointIdentity.CreateUpnIdentity(upn); 300internal static EndpointIdentity CreateWindowsIdentity(bool spnOnly) 302EndpointIdentity identity = null; 305identity = EndpointIdentity.CreateSpnIdentity(String.Format(CultureInfo.InvariantCulture, "host/{0}", DnsCache.MachineName)); 380internal static string GetSpnFromIdentity(EndpointIdentity identity, EndpointAddress target)