ISecuritySession.cs 445 B

12345678910111213
  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. public interface ISecuritySession : ISession
  9. {
  10. EndpointIdentity RemoteIdentity { get; }
  11. }
  12. }