📄 messageservice.dll.config
字号:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<compilation debug="true" />
</system.web>
<!-- When deploying the service library project, the content of the config file must be added to the host's
app.config file. System.Configuration does not support config files for libraries. -->
<system.serviceModel>
<services>
<service behaviorConfiguration="" name="Wrox.ProCSharp.WCF.MessageService">
<endpoint address="" binding="wsDualHttpBinding" bindingConfiguration=""
contract="Wrox.ProCSharp.WCF.IMyMessage">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<host>
<baseAddresses>
<add baseAddress="http://localhost:8731/Design_Time_Addresses/MessageService/Service1/" />
</baseAddresses>
</host>
</service>
</services>
<behaviors />
</system.serviceModel>
</configuration>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -