|   | SubscriberHubGetMetadata Method | 
        
        
            Filters metadata and returns the result.
            
        
        Namespace: GSF.Web.SharedAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic IEnumerable<Object> GetMetadata(
	string subscriberID,
	string tableName,
	string filter,
	string sortField,
	int takeCount
)
Public Function GetMetadata ( 
	subscriberID As String,
	tableName As String,
	filter As String,
	sortField As String,
	takeCount As Integer
) As IEnumerable(Of Object)
public:
IEnumerable<Object^>^ GetMetadata(
	String^ subscriberID, 
	String^ tableName, 
	String^ filter, 
	String^ sortField, 
	int takeCount
)
member GetMetadata : 
        subscriberID : string * 
        tableName : string * 
        filter : string * 
        sortField : string * 
        takeCount : int -> IEnumerable<Object> function GetMetadata(subscriberID, tableName, filter, sortField, takeCount);
Parameters
- subscriberID  String
- The ID of the subscriber.
- tableName  String
- The metadata table from which to return rows.
- filter  String
- The filter to apply to the metadata table.
- sortField  String
- The field by which to sort the result set.
- takeCount  Int32
- The maximum number of records to be returned from the result set.
Return Value
IEnumerableObjectThe result of the metadata query.
 See Also
See Also