Compartir a través de


AdomdCommand.CommandStream Propiedad

Gets or sets the command to run, using a System.IO.Stream.

Espacio de nombres:  Microsoft.AnalysisServices.AdomdClient
Ensamblado:  Microsoft.AnalysisServices.AdomdClient (en Microsoft.AnalysisServices.AdomdClient.dll)

Sintaxis

'Declaración
<BrowsableAttribute(False)> _
Public Property CommandStream As Stream 
    Get 
    Set
'Uso
Dim instance As AdomdCommand 
Dim value As Stream 

value = instance.CommandStream

instance.CommandStream = value
[BrowsableAttribute(false)]
public Stream CommandStream { get; set; }
[BrowsableAttribute(false)]
public:
property Stream^ CommandStream {
    Stream^ get ();
    void set (Stream^ value);
}
[<BrowsableAttribute(false)>]
member CommandStream : Stream with get, set
function get CommandStream () : Stream 
function set CommandStream (value : Stream)

Valor de la propiedad

Tipo: System.IO.Stream
A System.IO.Stream that contains the XML-based command for the AdomdCommand.

Excepciones

Excepción Condición
System.ArgumentException

The System.IO.Stream does not support reading.

Comentarios

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).

Vea también

Referencia

AdomdCommand Clase

Espacio de nombres Microsoft.AnalysisServices.AdomdClient