Gets the resource property.

Namespace:  GrassValley.Mseries.Control
Assembly:  GrassValley.Mseries.Control (in GrassValley.Mseries.Control.dll) Version: 1.0.0.0

Syntax

C#
public Object GetResourceProperty(
	string resType,
	int resNum,
	string propertyQuery
)
Visual Basic (Declaration)
Public Function GetResourceProperty ( _
	resType As String, _
	resNum As Integer, _
	propertyQuery As String _
) As Object
Visual C++
public:
virtual Object^ GetResourceProperty(
	String^ resType, 
	int resNum, 
	String^ propertyQuery
) sealed

Parameters

resType
Type: System..::.String
Resource type.
resNum
Type: System..::.Int32
Resource number.
propertyQuery
Type: System..::.String
Property query.

Return Value

object or object array

Implements

ISimpleController..::.GetResourceProperty(String, Int32, String)

Remarks

Channel properties include “autoStop”, ”listPause”, “listRepeat”, and more. Multiple property values can be requested by putting more than one string in the property query. Parameter names should be separated by white space or the ‘+’ character. When a single value is requested, a single object is returned. When returning multiple values, an object array is returned. The order of elements in this array matches the order in the property query.

See Also