2015-09-08 36 views
0

我有一個視覺工作室web服務和的[的WebMethod]一個返回一個這樣的數組對象:編輯皁響應C#

 public createSerial[] Create(string inputSerial) 
    { 
     Bus bus = new Bus(); 
     return bus.CreateOperation() 
    } 

當我稱之爲它產生以下響應:

 <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> 
    <soap:Body> 
     <CreateSerial xmlns="http://london.com/v1/"> 
     <CreateSerialRequestResult> 
      <CreateSerialResponse> 
       <serial xmlns="urn:microsoft-dynamics-schemas/ve">57</serial> 
      </CreateSerialResponse> 
     </CreateSerialRequestResult> 
     </CreateSerial> 
    </soap:Body> 
</soap:Envelope> 

但我想只有這個:

 <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> 
    <soap:Body> 
     <CreateSerial xmlns="http://london.com/v1/"> 
       <serial>57</serial> 
     </CreateSerial> 
    </soap:Body> 
</soap:Envelope> 

我怎樣才能做到這一點?

回答

0
ParameterStyle = SoapParameterStyle.Bare