DSPResourceQueryProvider GetOpenPropertyValues Method
Gets a list of all open properties for the specified resource.

Namespace: HotDocs.Sdk.DataServices
Assembly: HotDocs.Sdk.DataServices (in HotDocs.Sdk.DataServices.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public IEnumerable<KeyValuePair<string, Object>> GetOpenPropertyValues(
	Object target
)

Parameters

target
Type: OnlineSystem Object
The target resource to get open properties from.

Return Value

Type: OnlineIEnumerable OnlineKeyValuePair OnlineString, OnlineObject  
Enumerable of pairs, where the Key is the name of the open property and the Value is the value if that property.

Implements

OnlineIDataServiceQueryProvider GetOpenPropertyValues(Object)
Remarks

This method should only return open properties. Properties declared in metadata for this resource's resource type must not be returned by this method. Properties can have null values. The type of the property is determined from the returned object, only primitive types are supported for now.
See Also