Server.SendXmlaRequest Method

Definition

Overloads

SendXmlaRequest(XmlaRequestType, Stream)

Sends an XML for Analysis (XMLA) request of the specified type using the given stream.

SendXmlaRequest(XmlaRequestType, TextReader)

ends an XML for Analysis (XMLA) request of the specified type using the given request.

SendXmlaRequest(XmlaRequestType, Stream)

Sends an XML for Analysis (XMLA) request of the specified type using the given stream.

public System.Xml.XmlReader SendXmlaRequest (Microsoft.AnalysisServices.XmlaRequestType type, System.IO.Stream requestStream);
member this.SendXmlaRequest : Microsoft.AnalysisServices.XmlaRequestType * System.IO.Stream -> System.Xml.XmlReader
Public Function SendXmlaRequest (type As XmlaRequestType, requestStream As Stream) As XmlReader

Parameters

type
XmlaRequestType

The type of request to send.

requestStream
Stream

A Stream containing the request.

Returns

An XmlReader containing the results of the request.

Applies to

SendXmlaRequest(XmlaRequestType, TextReader)

ends an XML for Analysis (XMLA) request of the specified type using the given request.

public System.Xml.XmlReader SendXmlaRequest (Microsoft.AnalysisServices.XmlaRequestType type, System.IO.TextReader request);
member this.SendXmlaRequest : Microsoft.AnalysisServices.XmlaRequestType * System.IO.TextReader -> System.Xml.XmlReader
Public Function SendXmlaRequest (type As XmlaRequestType, request As TextReader) As XmlReader

Parameters

type
XmlaRequestType

The type of request to send.

request
TextReader

A TextReader containing the request.

Returns

An XmlReader containing the results of the request.

Applies to