Files
linux-packaging-mono/external/referencesource/System.ServiceModel/System/ServiceModel/Security/IEndpointIdentityProvider.cs

15 lines
452 B
C#
Raw Normal View History

//------------------------------------------------------------
// 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);
}
}