AdomdCommand::CommandStream Property
Updated: March 10, 2016
Gets or sets the command to run, using a System.IO::Stream.
Assembly: Microsoft.AnalysisServices.AdomdClient (in Microsoft.AnalysisServices.AdomdClient.dll)
public: [BrowsableAttribute(false)] property Stream^ CommandStream { Stream^ get(); void set(Stream^ value); }
Property Value
Type: System.IO::Stream^A System.IO::Stream that contains the XML-based command for the AdomdCommand.
| Exception | Condition |
|---|---|
| System::ArgumentException | The System.IO::Stream does not support reading. |
You can use either the CommandText property or the CommandStream property to provide a command to be run by the AdomdCommand. If either both properties are set or neither property is set, then an exception is thrown when the AdomdCommand tries to run the command.
The AdomdCommand assumes that the System.IO::Stream contains an XML for Analysis compliant command (that is, a command that can be framed by the <Command> tag within an XML for Analysis request).
Show: