Gets a property.

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

Syntax

C#
public Object GetProperty(
	string uri,
	string propertyQuery
)
Visual Basic (Declaration)
Public Function GetProperty ( _
	uri As String, _
	propertyQuery As String _
) As Object
Visual C++
public:
virtual Object^ GetProperty(
	String^ uri, 
	String^ propertyQuery
) sealed

Parameters

uri
Type: System..::.String
URI.
propertyQuery
Type: System..::.String
Property query.

Return Value

object or object array

Implements

IMediaMgr..::.GetProperty(String, String)

Remarks

The GetProperty function can be used to return values for one or more asset properties. Multiple values can be requested by putting more than one name string in the status query. Status 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