📄 reference.cs
字号:
//------------------------------------------------------------------------------
// <autogenerated>
// This code was generated by a tool.
// Runtime Version: 1.1.4322.573
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </autogenerated>
//------------------------------------------------------------------------------
//
// 此源代码是由 Microsoft.VSDesigner 1.1.4322.573 版自动生成。
//
namespace Job111.JobFairService {
using System.Diagnostics;
using System.Xml.Serialization;
using System;
using System.Web.Services.Protocols;
using System.ComponentModel;
using System.Web.Services;
/// <remarks/>
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Web.Services.WebServiceBindingAttribute(Name="JobFairServiceSoap", Namespace="http://tempuri.org/")]
public class JobFairService : System.Web.Services.Protocols.SoapHttpClientProtocol {
/// <remarks/>
public JobFairService() {
// this.Url = "http://localhost/JobFairService/JobFairService.asmx";
this.Url = new System.IO.StreamReader(@"c:\Job111\config_jobfair.ini").ReadLine();
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/ViewMeetList", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public System.Data.DataSet ViewMeetList(int JobFairID) {
object[] results = this.Invoke("ViewMeetList", new object[] {
JobFairID});
return ((System.Data.DataSet)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginViewMeetList(int JobFairID, System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("ViewMeetList", new object[] {
JobFairID}, callback, asyncState);
}
/// <remarks/>
public System.Data.DataSet EndViewMeetList(System.IAsyncResult asyncResult) {
object[] results = this.EndInvoke(asyncResult);
return ((System.Data.DataSet)(results[0]));
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/AddMeet", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public int AddMeet(int JobFairID, string MeetName) {
object[] results = this.Invoke("AddMeet", new object[] {
JobFairID,
MeetName});
return ((int)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginAddMeet(int JobFairID, string MeetName, System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("AddMeet", new object[] {
JobFairID,
MeetName}, callback, asyncState);
}
/// <remarks/>
public int EndAddMeet(System.IAsyncResult asyncResult) {
object[] results = this.EndInvoke(asyncResult);
return ((int)(results[0]));
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/DelMeet", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public int DelMeet(int JobFairID, int MeetID) {
object[] results = this.Invoke("DelMeet", new object[] {
JobFairID,
MeetID});
return ((int)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginDelMeet(int JobFairID, int MeetID, System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("DelMeet", new object[] {
JobFairID,
MeetID}, callback, asyncState);
}
/// <remarks/>
public int EndDelMeet(System.IAsyncResult asyncResult) {
object[] results = this.EndInvoke(asyncResult);
return ((int)(results[0]));
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/UpDateMeet", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public int UpDateMeet(int JobFairID, int MeetID, string MeetName) {
object[] results = this.Invoke("UpDateMeet", new object[] {
JobFairID,
MeetID,
MeetName});
return ((int)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginUpDateMeet(int JobFairID, int MeetID, string MeetName, System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("UpDateMeet", new object[] {
JobFairID,
MeetID,
MeetName}, callback, asyncState);
}
/// <remarks/>
public int EndUpDateMeet(System.IAsyncResult asyncResult) {
object[] results = this.EndInvoke(asyncResult);
return ((int)(results[0]));
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/ApplyMeet", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public int ApplyMeet(int MeetID, int OnLineID) {
object[] results = this.Invoke("ApplyMeet", new object[] {
MeetID,
OnLineID});
return ((int)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginApplyMeet(int MeetID, int OnLineID, System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("ApplyMeet", new object[] {
MeetID,
OnLineID}, callback, asyncState);
}
/// <remarks/>
public int EndApplyMeet(System.IAsyncResult asyncResult) {
object[] results = this.EndInvoke(asyncResult);
return ((int)(results[0]));
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/IsApply", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public int IsApply(int MeetID, int OnLineID) {
object[] results = this.Invoke("IsApply", new object[] {
MeetID,
OnLineID});
return ((int)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginIsApply(int MeetID, int OnLineID, System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("IsApply", new object[] {
MeetID,
OnLineID}, callback, asyncState);
}
/// <remarks/>
public int EndIsApply(System.IAsyncResult asyncResult) {
object[] results = this.EndInvoke(asyncResult);
return ((int)(results[0]));
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/DestroyMeet", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public int DestroyMeet(int MeetID, int OnLineID) {
object[] results = this.Invoke("DestroyMeet", new object[] {
MeetID,
OnLineID});
return ((int)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginDestroyMeet(int MeetID, int OnLineID, System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("DestroyMeet", new object[] {
MeetID,
OnLineID}, callback, asyncState);
}
/// <remarks/>
public int EndDestroyMeet(System.IAsyncResult asyncResult) {
object[] results = this.EndInvoke(asyncResult);
return ((int)(results[0]));
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/IsOnLineID", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public bool IsOnLineID(int OnLineID, string Password) {
object[] results = this.Invoke("IsOnLineID", new object[] {
OnLineID,
Password});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginIsOnLineID(int OnLineID, string Password, System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("IsOnLineID", new object[] {
OnLineID,
Password}, callback, asyncState);
}
/// <remarks/>
public bool EndIsOnLineID(System.IAsyncResult asyncResult) {
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/AddUnitInfo", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public int AddUnitInfo(int OnLineID, int JobFairID, int UnitID, string UnitName, int MsgFlag) {
object[] results = this.Invoke("AddUnitInfo", new object[] {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -