DiscoveryEndpointElement.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using System;
  2. using System.ComponentModel;
  3. using System.Configuration;
  4. using System.ServiceModel.Configuration;
  5. using System.ServiceModel.Description;
  6. namespace System.ServiceModel.Discovery.Configuration
  7. {
  8. public class DiscoveryEndpointElement : StandardEndpointElement
  9. {
  10. public DiscoveryEndpointElement ()
  11. {
  12. }
  13. protected override Type EndpointType {
  14. get { return typeof (DiscoveryEndpoint); }
  15. }
  16. protected override ServiceEndpoint CreateServiceEndpoint (ContractDescription contractDescription)
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. protected override void InitializeFrom (ServiceEndpoint endpoint)
  21. {
  22. throw new NotImplementedException ();
  23. }
  24. protected override void OnApplyConfiguration (ServiceEndpoint endpoint, ChannelEndpointElement serviceEndpointElement)
  25. {
  26. throw new NotImplementedException ();
  27. }
  28. protected override void OnApplyConfiguration (ServiceEndpoint endpoint, ServiceEndpointElement serviceEndpointElement)
  29. {
  30. throw new NotImplementedException ();
  31. }
  32. protected override void OnInitializeAndValidate (ChannelEndpointElement channelEndpointElement)
  33. {
  34. throw new NotImplementedException ();
  35. }
  36. protected override void OnInitializeAndValidate (ServiceEndpointElement channelEndpointElement)
  37. {
  38. throw new NotImplementedException ();
  39. }
  40. }
  41. }