博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android--asp.net webservice 返回json
阅读量:5163 次
发布时间:2019-06-13

本文共 1468 字,大约阅读时间需要 4 分钟。

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Services;using System.Web.Script.Services;using System.Web.Script.Serialization;[WebService(Namespace = "http://tempuri.org/")][WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)][System.Web.Script.Services.ScriptService]public class Service : System.Web.Services.WebService{    public Service () {}        [WebMethod]    [ScriptMethod(ResponseFormat=ResponseFormat.Json)]    public string Authenticate(string UserId, string UserPwd)    {        bool result = true;        return new JavaScriptSerializer().Serialize(result);    }    [WebMethod]    [ScriptMethod(ResponseFormat = ResponseFormat.Json)]    public string GetUser()    {        User user = new User();        user.UserId = "jake";        user.UserPwd = "123";        return new JavaScriptSerializer().Serialize(user);    }    [WebMethod]    [ScriptMethod(ResponseFormat = ResponseFormat.Json)]    public string GetUsers()    {        List
list = new List
(); User user = new User(); user.UserId = "jake"; user.UserPwd = "123"; list.Add(user); user.UserId = "nola"; user.UserPwd = "456"; list.Add(user); return new JavaScriptSerializer().Serialize(list); }}public class User{ public string UserId { get; set; } public string UserPwd { get; set; }}

 

转载于:https://www.cnblogs.com/jake-ge/p/4721550.html

你可能感兴趣的文章
【更新】智能手机批量添加联系人
查看>>
NYOJ-128前缀式计算
查看>>
深入理解 JavaScript 事件循环(一)— event loop
查看>>
Hive(7)-基本查询语句
查看>>
注意java的对象引用
查看>>
C++ 面向对象 类成员函数this指针
查看>>
NSPredicate的使用,超级强大
查看>>
自动分割mp3等音频视频文件的脚本
查看>>
判断字符串是否为空的注意事项
查看>>
布兰诗歌
查看>>
js编码
查看>>
Pycharm Error loading package list:Status: 403错误解决方法
查看>>
steps/train_sat.sh
查看>>
转:Linux设备树(Device Tree)机制
查看>>
iOS 组件化
查看>>
(转)Tomcat 8 安装和配置、优化
查看>>
(转)Linxu磁盘体系知识介绍及磁盘介绍
查看>>
tkinter布局
查看>>
命令ord
查看>>
Sharepoint 2013搜索服务配置总结(实战)
查看>>