webservice中呼叫struct

taogchan發表於2013-07-18

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.Services;

namespace WSstruct
{
    /// 


    /// Service1 的摘要說明
    /// 

    [WebService(Namespace = "")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    [System.ComponentModel.ToolboxItem(false)]
    public class Service1 : System.Web.Services.WebService
    {
        [WebMethod]
        public string HelloWorld()
        {
            return "Hello World";
        }

        [WebMethod]
        public MyStruct GetMyStruct()
        {
            throw new NotImplementedException();
        } 
    }

    public struct MyStruct
    {
        public string myString;
        public decimal mydecimal;
    }


}

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22392018/viewspace-766614/,如需轉載,請註明出處,否則將追究法律責任。

相關文章