以下为引用的内容: <WebMethod(Description:="所有教室列表")> _ Public Function ListAllRooms() As XmlDocument
源代码网整理以下 Try m_CpCourseArrange.FillRoomId(m_DsCourseArrange) "Dim reader As New MemoryStream
源代码网整理以下 Dim doc As New XmlDocument doc.LoadXml(m_DsCourseArrange.GetXml.ToString) Return doc
源代码网整理以下 Catch ex As Protocols.SoapException Throw SoapExceptionE.RaiseException("ListAllRooms", "http://tempuri.org/CourseArrange", ex.Message, "4000", ex.Source, SoapExceptionE.FaultCode.Server) End Try End Function
源代码网整理以下 GetXML--Returns the XML representation of the data stored in the DataSet. (MSDN)
源代码网整理以下 Private Shared Sub DemonstrateGetXml() " Create a DataSet with one table containing two columns and 10 rows. Dim ds As DataSet = New DataSet("myDataSet") Dim t As DataTable = ds.Tables.Add("Items") t.Columns.Add("id", Type.GetType("System.Int32")) t.Columns.Add("Item", Type.GetType("System.String"))
源代码网整理以下 " Add ten rows. Dim r As DataRow Dim i As Integer For i = 0 To 9 r = t.NewRow() r("id") = i r("Item")= "Item" & i t.Rows.Add(r) Next
源代码网整理以下 " Display the DataSet contents as XML. Console.WriteLine( ds.GetXml() ) End Sub
|