?? 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 + -