1 //----------------------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //----------------------------------------------------------------------------
4 namespace System.ServiceModel.Security
5 {
6     using System.ServiceModel;
7     using System.ServiceModel.Channels;
8 
9     public interface ISecuritySession : ISession
10     {
11         EndpointIdentity RemoteIdentity { get; }
12     }
13 }
14