EndpointTrait.cs 382 B

123456789101112
  1. //------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //------------------------------------------------------------
  4. namespace System.ServiceModel
  5. {
  6. abstract class EndpointTrait<TChannel>
  7. where TChannel : class
  8. {
  9. public abstract ChannelFactory<TChannel> CreateChannelFactory();
  10. }
  11. }