📄 reference.cs
字号:
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行库版本:2.0.50727.42
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
//
// 此源代码是由 Microsoft.CompactFramework.Design.Data 2.0.50727.42 版自动生成。
//
namespace MyWorkFirst.localhost {
using System.Diagnostics;
using System.Web.Services;
using System.ComponentModel;
using System.Web.Services.Protocols;
using System;
using System.Xml.Serialization;
/// <remarks/>
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Web.Services.WebServiceBindingAttribute(Name="IMySampleTestbinding", Namespace="http://tempuri.org/")]
public partial class IMySampleTestservice : System.Web.Services.Protocols.SoapHttpClientProtocol {
/// <remarks/>
public IMySampleTestservice() {
this.Url = "http://185.186.187.43/SampleTest.exe/soap/IMySampleTest";
}
/// <remarks/>
[System.Web.Services.Protocols.SoapRpcMethodAttribute("urn:MySampleTestIntf-IMySampleTest#TheAnswer", RequestNamespace="urn:MySampleTestIntf-IMySampleTest", ResponseNamespace="urn:MySampleTestIntf-IMySampleTest")]
[return: System.Xml.Serialization.SoapElementAttribute("return")]
public int TheAnswer(ref string WMMs) {
object[] results = this.Invoke("TheAnswer", new object[] {
WMMs});
WMMs = ((string)(results[1]));
return ((int)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginTheAnswer(string WMMs, System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("TheAnswer", new object[] {
WMMs}, callback, asyncState);
}
/// <remarks/>
public int EndTheAnswer(System.IAsyncResult asyncResult, out string WMMs) {
object[] results = this.EndInvoke(asyncResult);
WMMs = ((string)(results[1]));
return ((int)(results[0]));
}
/// <remarks/>
[System.Web.Services.Protocols.SoapRpcMethodAttribute("urn:MySampleTestIntf-IMySampleTest#TheQuestion", RequestNamespace="urn:MySampleTestIntf-IMySampleTest", ResponseNamespace="urn:MySampleTestIntf-IMySampleTest")]
[return: System.Xml.Serialization.SoapElementAttribute("return")]
public string TheQuestion() {
object[] results = this.Invoke("TheQuestion", new object[0]);
return ((string)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginTheQuestion(System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("TheQuestion", new object[0], callback, asyncState);
}
/// <remarks/>
public string EndTheQuestion(System.IAsyncResult asyncResult) {
object[] results = this.EndInvoke(asyncResult);
return ((string)(results[0]));
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -