IEndpointBehavior.cs 787 B

123456789101112131415161718
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. namespace System.ServiceModel.Description
  5. {
  6. using System.Collections.Generic;
  7. using System.ServiceModel.Channels;
  8. using System.ServiceModel.Dispatcher;
  9. public interface IEndpointBehavior
  10. {
  11. void Validate(ServiceEndpoint endpoint);
  12. void AddBindingParameters(ServiceEndpoint endpoint, BindingParameterCollection bindingParameters);
  13. void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher);
  14. void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime);
  15. }
  16. }