reference.cs
来自「linq to sql 编程 基于c#的linq 编程 操作内存中的数据」· CS 代码 · 共 54 行
CS
54 行
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:2.0.50727.3053
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
namespace Client.HelloWCF {
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
[System.ServiceModel.ServiceContractAttribute(ConfigurationName="HelloWCF.IHelloWCFService")]
public interface IHelloWCFService {
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IHelloWCFService/HelloWCF", ReplyAction="http://tempuri.org/IHelloWCFService/HelloWCFResponse")]
string HelloWCF(string message);
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
public interface IHelloWCFServiceChannel : Client.HelloWCF.IHelloWCFService, System.ServiceModel.IClientChannel {
}
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
public partial class HelloWCFServiceClient : System.ServiceModel.ClientBase<Client.HelloWCF.IHelloWCFService>, Client.HelloWCF.IHelloWCFService {
public HelloWCFServiceClient() {
}
public HelloWCFServiceClient(string endpointConfigurationName) :
base(endpointConfigurationName) {
}
public HelloWCFServiceClient(string endpointConfigurationName, string remoteAddress) :
base(endpointConfigurationName, remoteAddress) {
}
public HelloWCFServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
base(endpointConfigurationName, remoteAddress) {
}
public HelloWCFServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
base(binding, remoteAddress) {
}
public string HelloWCF(string message) {
return base.Channel.HelloWCF(message);
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?