📄 titlesserviceinput.cs
字号:
//------------------------------------------------------------------------------
// <autogenerated>
// This code was generated by a tool.
// Runtime Version: 1.0.3705.288
//
// 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.288.
//
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")]
public class TitlesServiceInput : System.Web.Services.Protocols.HttpGetClientProtocol {
/// <remarks/>
public TitlesServiceInput() {
this.Url = "http://localhost/webservices";
}
/// <remarks/>
[System.Web.Services.Protocols.HttpMethodAttribute(typeof(System.Web.Services.Protocols.TextReturnReader), typeof(System.Web.Services.Protocols.UrlParameterWriter))]
public GetTitlesInputMatches GetTitlesInput(string type) {
return ((GetTitlesInputMatches)(this.Invoke("GetTitlesInput", (this.Url + "/Titles.aspx"), new object[] {
type})));
}
/// <remarks/>
public System.IAsyncResult BeginGetTitlesInput(string type, System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("GetTitlesInput", (this.Url + "/Titles.aspx"), new object[] {
type}, callback, asyncState);
}
/// <remarks/>
public GetTitlesInputMatches EndGetTitlesInput(System.IAsyncResult asyncResult) {
return ((GetTitlesInputMatches)(this.EndInvoke(asyncResult)));
}
}
public class GetTitlesInputMatches {
[System.Web.Services.Protocols.MatchAttribute("<li>(.*?)- \\$", IgnoreCase=true, MaxRepeats=100)]
public string[] Titles;
[System.Web.Services.Protocols.MatchAttribute("\\$([\\d|\\.]+)", IgnoreCase=true, MaxRepeats=100)]
public string[] Prices;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -