File: System\ServiceModel\Security\IEndpointIdentityProvider.cs | |
Project: ndp\cdf\src\WCF\ServiceModel\System.ServiceModel.csproj (System.ServiceModel) |
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------ namespace System.ServiceModel.Security { using System.IdentityModel.Selectors; using System.ServiceModel; public interface IEndpointIdentityProvider { EndpointIdentity GetIdentityOfSelf(SecurityTokenRequirement tokenRequirement); } } |