com_systemrolemap.cs
来自「ASP.NET的一些开发实例,有论坛管理系统等」· CS 代码 · 共 137 行
CS
137 行
//------------------------------------------------------------------------------
// <autogenerated>
// This code was generated by a tool.
// Runtime Version: 1.0.3705.0
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </autogenerated>
//------------------------------------------------------------------------------
//
// This source code was auto-generated by wsdl, Version=1.0.3705.0.
//
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="COM_SystemRolemapSoap", Namespace="http://tempuri.org/")]
public class COM_SystemRolemap : System.Web.Services.Protocols.SoapHttpClientProtocol {
/// <remarks/>
public COM_SystemRolemap() {
this.Url = "http://localhost/whiteforumserver/bdstudio/COM_systemRolemap.asmx";
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/DsMainListForAll", 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 DsMainListForAll(string[] str_FieldValue) {
object[] results = this.Invoke("DsMainListForAll", new object[] {
str_FieldValue});
return ((System.Data.DataSet)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginDsMainListForAll(string[] str_FieldValue, System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("DsMainListForAll", new object[] {
str_FieldValue}, callback, asyncState);
}
/// <remarks/>
public System.Data.DataSet EndDsMainListForAll(System.IAsyncResult asyncResult) {
object[] results = this.EndInvoke(asyncResult);
return ((System.Data.DataSet)(results[0]));
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/DsMainFieldListForAll", 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 DsMainFieldListForAll(string ItemId) {
object[] results = this.Invoke("DsMainFieldListForAll", new object[] {
ItemId});
return ((System.Data.DataSet)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginDsMainFieldListForAll(string ItemId, System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("DsMainFieldListForAll", new object[] {
ItemId}, callback, asyncState);
}
/// <remarks/>
public System.Data.DataSet EndDsMainFieldListForAll(System.IAsyncResult asyncResult) {
object[] results = this.EndInvoke(asyncResult);
return ((System.Data.DataSet)(results[0]));
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/DsRoleList", 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 DsRoleList(string RoleType) {
object[] results = this.Invoke("DsRoleList", new object[] {
RoleType});
return ((System.Data.DataSet)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginDsRoleList(string RoleType, System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("DsRoleList", new object[] {
RoleType}, callback, asyncState);
}
/// <remarks/>
public System.Data.DataSet EndDsRoleList(System.IAsyncResult asyncResult) {
object[] results = this.EndInvoke(asyncResult);
return ((System.Data.DataSet)(results[0]));
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/DsEnableRoleList", 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 DsEnableRoleList(string RoleType) {
object[] results = this.Invoke("DsEnableRoleList", new object[] {
RoleType});
return ((System.Data.DataSet)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginDsEnableRoleList(string RoleType, System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("DsEnableRoleList", new object[] {
RoleType}, callback, asyncState);
}
/// <remarks/>
public System.Data.DataSet EndDsEnableRoleList(System.IAsyncResult asyncResult) {
object[] results = this.EndInvoke(asyncResult);
return ((System.Data.DataSet)(results[0]));
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/UpdateRole", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public void UpdateRole(string m_num, string str_rolen_num, ref string sReturn) {
object[] results = this.Invoke("UpdateRole", new object[] {
m_num,
str_rolen_num,
sReturn});
sReturn = ((string)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginUpdateRole(string m_num, string str_rolen_num, string sReturn, System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("UpdateRole", new object[] {
m_num,
str_rolen_num,
sReturn}, callback, asyncState);
}
/// <remarks/>
public void EndUpdateRole(System.IAsyncResult asyncResult, out string sReturn) {
object[] results = this.EndInvoke(asyncResult);
sReturn = ((string)(results[0]));
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?