代码搜索:WebService

找到约 1,279 项符合「WebService」的源代码

代码结果 1,279
www.eeworm.com/read/155070/5629737

asmx sessionstate.asmx

using System.Web.Services; public class SessionStateExample : WebService { [WebMethod(EnableSession=true)] public void SetSessi
www.eeworm.com/read/155070/5629749

asmx helloworld.asmx

using System.Web.Services; public class HelloWorld { [WebMethod] [EncryptionExtension(Encrypt=EncryptMode.None)] public string SayHe
www.eeworm.com/read/155070/5629750

asmx add.asmx

using System.Web.Services; public class MathService { [WebMethod] [TraceExtension(Filename="TraceExtension.log")] public int Add(in
www.eeworm.com/read/155070/5629762

asmx secure.asmx

using System.Web.Services; using System; public class SecureSample : WebService { [WebMethod] public string WhoAreYou() { ret
www.eeworm.com/read/155070/5629765

asmx soapexception.asmx

using System.Web.Services; public class ExceptionExample { [WebMethod()] public int Divide(int a, int b) { return a / b;
www.eeworm.com/read/155067/5630041

asmx stockquote.asmx

using System.Web.Services; public class QuoteService { [WebMethod()] public QuoteDetails[] GetQuotes() { //' Create an array o
www.eeworm.com/read/155067/5630074

asmx soapheaders.asmx

using System.Web.Services; using System.Web.Services.Protocols; // SimpleSoapHeader class extends from SoapHeader public class MyS
www.eeworm.com/read/155067/5630077

asmx secure.asmx

using System.Web.Services; using System.Web.Security; public class SecureSample : WebService { [WebMethod] public string WhoAreYou()
www.eeworm.com/read/155067/5630086

asmx soapheaderauthentication.asmx

using System; using System.Web.Services; using System.Web.Services.Protocols; public class Authentication : SoapHeader { public stri
www.eeworm.com/read/155067/5630102

asmx timeout.asmx

using System.Threading; using System.Web.Services; public class Timeout { [WebMethod()] public int Add(int a, int b) { Thread.Slee