Executes ActiveSpaces Admin language commands on the Metasapce

Namespace: Com.Tibco.As.Admin
Assembly: TIBCO.ActiveSpaces.Common (in TIBCO.ActiveSpaces.Common.dll) Version: 2.0.0.0 (2.2.0.015)

Syntax

C#
public abstract string Execute(
	Metaspace metaspace,
	string command
)
Visual Basic
Public MustOverride Function Execute ( 
	metaspace As Metaspace,
	command As String
) As String
Visual C++
public:
virtual String^ Execute(
	Metaspace^ metaspace, 
	String^ command
) abstract
F#
abstract Execute : 
        metaspace : Metaspace * 
        command : string -> string 

Parameters

metaspace
Type: Com.Tibco.As.Space..::..Metaspace
Metaspace on which the commands will be executed must be passed in
command
Type: System..::..String
Command to execute

Return Value

Type: String
The output produced by the admin command being executed

See Also