Gets the result object with the specified name.

Namespace:  Endeca.Data.Provider
Assembly:  Endeca.Data (in Endeca.Data.dll) Version: 2.1.1.0 (2.1.1.620)

Syntax

C#
protected internal Object this[
	string resultName
] { get; }
Visual Basic (Declaration)
Protected Friend ReadOnly Default Property Item ( _
	resultName As String _
) As Object
Visual C++
protected public:
property Object^ default[String^ resultName] {
	Object^ get (String^ resultName);
}

Parameters

resultName
Type: System..::.String
Name of the result to retrieve. Each CommandResult-subclass defines one or more 'slices' or 'buckets' into which data from the MDEX is marshalled. This parameter indicates which 'bucket' should be marshalled.

Remarks

This property centralizes lazy masrshalling of objects returned by the engine into the types defined by the RAD API. No marshalling occurs until a value is requested by accessing this property.

See Also