с учетом этой конфигурации:
<service name="WCFWSHttps.Service1" behaviorConfiguration="WCFWSHttps.Service1Behavior">
<endpoint address="https://localhost/WCFWSHttps/Service1.svc" binding="wsHttpBinding" bindingConfiguration="TransportSecurity" contract="WCFWSHttps.IService1"/>
<endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange"/>
</service>
для чего используется <endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange"/>
?
и как я могу реализовать эту точку в коде позади. то есть у меня есть
WSHttpBinding binding;
ServiceHost svh
как я могу добавить mex thingi в код позади?