程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> Web Services使用多態的方法

Web Services使用多態的方法

編輯:ASP.NET基礎

在Web Services方法中,往往使用的都是一個具體類型的參數,這個參數一般就是一個數據對象。ASP.NET Web Services通過聲明XmlIncludeAttribute可以實現Web Services方法中運用多態。

XmlIncludeAttribute允許XmlSerializer在序列化火反序列化對象時識別類型。當應用XmlIncludeAttribute時,需指定派生類的Type。XmlSerializer序列化同時包含基類和派生類的對象之後,它就可以識別兩種對象類型。

首先定義基類Vehicle和派生類Car:

public abstract class Vehicle 
 { 
   public string LicenseNumber{get;set;} 
  public DateTime MakeTime { get; set; } 
 } 
 public class Car : Vehicle 
 { 
  public int DoorNum { get; set; } 
 } 

定義AddVehicle的Web Method,聲明XmlInclude需要添加對命名空間System.Xml.Serialization的引用:

[WebMethod] 
[XmlInclude(typeof(Car))] 
public void AddVehicle(Vehicle vehicle) 
{ 
 }  

查看生成的wsdl,wsdl利用extension的base屬性來描述Car繼承Vechicle。

查看引用Web Services生成的Reference.cs文件,Vehicle類會有XmlIncludeAttribute的聲明:

[System.Xml.Serialization.XmlIncludeAttribute(typeof(Car))] 
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")] 
[System.SerializableAttribute()] 
[System.Diagnostics.DebuggerStepThroughAttribute()] 
[System.ComponentModel.DesignerCategoryAttribute("code")] 
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] 
public abstract partial class Vehicle : object 

客戶端測試代碼:

static void Main(string[] args) 
{ 
localhost.WebService1SoapClient c = new localhost.WebService1SoapClient(); 
 localhost.Car car = new localhost.Car() {                         
LicenseNumber="0001",                  
MakeTime=DateTime.Now, 
 DoorNum=2 
 c.AddVehicle(car); 
 } 
 

在Web Services的AddVehicle方法可以查看傳過來的參數:

Web Services可以支持多態,不過僅僅限制在可以直接引用Web Services的時候有生成可序列化的代碼時能夠使用,要在其他的客戶端使用還是得費一番周折。

以上就是本文的全部內容,希望對大家的學習有所幫助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved