IContextSessionProvider.cs 515 B

123456789101112131415
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. namespace System.ServiceModel
  5. {
  6. using System;
  7. using System.ServiceModel.Channels;
  8. using System.ServiceModel;
  9. // CSD Dev Framework#417: marker interface for IServiceBehaviors/Bindings that support context at the "app layer"
  10. interface IContextSessionProvider
  11. {
  12. }
  13. }