代码搜索:WebService
找到约 1,279 项符合「WebService」的源代码
代码结果 1,279
www.eeworm.com/read/155067/5630106
asmx sessionstate.asmx
using System.Web.Services;
public class SessionStateExample : WebService
{
[WebMethod(EnableSession=true)]
public void SetSessi
www.eeworm.com/read/155067/5630119
asmx helloworld.asmx
using System.Web.Services;
public class HelloWorld {
[WebMethod]
[EncryptionExtension(Encrypt=EncryptMode.None)]
public string SayHe
www.eeworm.com/read/155067/5630120
asmx add.asmx
using System.Web.Services;
public class MathService {
[WebMethod]
[TraceExtension(Filename="TraceExtension.log")]
public int Add(in
www.eeworm.com/read/155067/5630133
asmx secure.asmx
using System.Web.Services;
using System;
public class SecureSample : WebService
{
[WebMethod]
public string WhoAreYou()
{
ret
www.eeworm.com/read/155067/5630137
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/5630168
asmx fibonacci.asmx
using System.Web.Services;
public class Fibonacci : WebService{
[WebMethod]
public int GetSeqNumber(int fibIndex){
if (fibIndex
www.eeworm.com/read/155067/5630169
asmx transacted.asmx
using System.Web.Services;
using System.EnterpriseServices;
public class Fibonacci : WebService
{
[WebMethod(TransactionOption=TransactionOp
www.eeworm.com/read/155067/5630173
asmx simple.asmx
using System.Web.Services;
using System.Web.Services.Protocols;
public class SimpleSoapHeader : SoapHeader{
public string Value;
}
publ
www.eeworm.com/read/155067/5630174
asmx direction.asmx
using System.Web.Services;
using System.Web.Services.Protocols;
public class SimpleSoapHeader : SoapHeader{
public string Value;
}
publ
www.eeworm.com/read/155067/5630175
asmx required.asmx
using System.Web.Services;
using System.Web.Services.Protocols;
public class SimpleSoapHeader : SoapHeader{
public string Value;
}
publ