Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Returns a CellSet created from a server response, passed in as an XmlReader.
Namespace: Microsoft.AnalysisServices.AdomdClient
Assembly: Microsoft.AnalysisServices.AdomdClient (in Microsoft.AnalysisServices.AdomdClient.dll)
Syntax
'Declaration
Public Shared Function LoadXml ( _
xmlTextReader As XmlReader _
) As CellSet
'Usage
Dim xmlTextReader As XmlReader
Dim returnValue As CellSet
returnValue = CellSet.LoadXml(xmlTextReader)
public static CellSet LoadXml(
XmlReader xmlTextReader
)
public:
static CellSet^ LoadXml(
XmlReader^ xmlTextReader
)
static member LoadXml :
xmlTextReader:XmlReader -> CellSet
public static function LoadXml(
xmlTextReader : XmlReader
) : CellSet
Parameters
- xmlTextReader
Type: System.Xml.XmlReader
XmlReader containing the server response to return as a CellSet. For more information about this class, see System.Xml.XmlReader.
Return Value
Type: Microsoft.AnalysisServices.AdomdClient.CellSet
A CellSet, created from the xmlTextReaderparameter.
Exceptions
| Exception | Condition |
|---|---|
| System.ArgumentNullException | The xmlTextReader was set to null. |
| System.ArgumentException | The State property of xmlTextReader was Error, EndOfFile, or Closed. |
| System.InvalidOperationException | The XML returned by the provider was not a valid cellset response. |
| AdomdErrorResponseException | The XML returned by the provider was a valid error response. |