Commit be302243 刘韬

1

1 个父辈 b4de7b0d
...@@ -164,7 +164,8 @@ ...@@ -164,7 +164,8 @@
</Compile> </Compile>
<Compile Include="VirtuallyStore\BufferSlotsManger.cs" /> <Compile Include="VirtuallyStore\BufferSlotsManger.cs" />
<Compile Include="VirtuallyStore\CommandList.cs" /> <Compile Include="VirtuallyStore\CommandList.cs" />
<Compile Include="VirtuallyStore\Reference.cs" /> <Compile Include="VirtuallyStore\ITowerAppWS_Reference.cs" />
<Compile Include="VirtuallyStore\IWSInterface_Reference.cs" />
<Compile Include="VirtuallyStore\VMsg.cs" /> <Compile Include="VirtuallyStore\VMsg.cs" />
<Compile Include="VirtuallyStore\VServerComm.cs" /> <Compile Include="VirtuallyStore\VServerComm.cs" />
<Compile Include="VirtuallyStore\TowerList.cs" /> <Compile Include="VirtuallyStore\TowerList.cs" />
......
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
namespace MydataWcfServiceTest.ServiceReference3 {
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
[System.ServiceModel.ServiceContractAttribute(Namespace="RoyoTech.StSys", ConfigurationName="ServiceReference3.IWSInterface")]
public interface IWSInterface {
[System.ServiceModel.OperationContractAttribute(Action="RoyoTech.StSys/IWSInterface/WebServiceIsConnected", ReplyAction="RoyoTech.StSys/IWSInterface/WebServiceIsConnectedResponse")]
bool WebServiceIsConnected();
[System.ServiceModel.OperationContractAttribute(Action="RoyoTech.StSys/IWSInterface/WebServiceIsConnected", ReplyAction="RoyoTech.StSys/IWSInterface/WebServiceIsConnectedResponse")]
System.Threading.Tasks.Task<bool> WebServiceIsConnectedAsync();
[System.ServiceModel.OperationContractAttribute(Action="RoyoTech.StSys/IWSInterface/XmlAction", ReplyAction="RoyoTech.StSys/IWSInterface/XmlActionResponse")]
System.Xml.Linq.XElement XmlAction(string xmlData);
[System.ServiceModel.OperationContractAttribute(Action="RoyoTech.StSys/IWSInterface/XmlAction", ReplyAction="RoyoTech.StSys/IWSInterface/XmlActionResponse")]
System.Threading.Tasks.Task<System.Xml.Linq.XElement> XmlActionAsync(string xmlData);
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
public interface IWSInterfaceChannel : MydataWcfServiceTest.ServiceReference3.IWSInterface, System.ServiceModel.IClientChannel {
}
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
public partial class WSInterfaceClient : System.ServiceModel.ClientBase<MydataWcfServiceTest.ServiceReference3.IWSInterface>, MydataWcfServiceTest.ServiceReference3.IWSInterface {
public WSInterfaceClient() {
}
public WSInterfaceClient(string endpointConfigurationName) :
base(endpointConfigurationName) {
}
public WSInterfaceClient(string endpointConfigurationName, string remoteAddress) :
base(endpointConfigurationName, remoteAddress) {
}
public WSInterfaceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
base(endpointConfigurationName, remoteAddress) {
}
public WSInterfaceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
base(binding, remoteAddress) {
}
public bool WebServiceIsConnected() {
return base.Channel.WebServiceIsConnected();
}
public System.Threading.Tasks.Task<bool> WebServiceIsConnectedAsync() {
return base.Channel.WebServiceIsConnectedAsync();
}
public System.Xml.Linq.XElement XmlAction(string xmlData) {
return base.Channel.XmlAction(xmlData);
}
public System.Threading.Tasks.Task<System.Xml.Linq.XElement> XmlActionAsync(string xmlData) {
return base.Channel.XmlActionAsync(xmlData);
}
}
}
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!