[This is preliminary documentation and is subject to change.]

Gets all the resources available to a particular user.

Namespace:  OfficeClip.DBLayer.Desktop
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public DataSet GetCalendarResources(
	int userId
)
Visual Basic (Declaration)
Public Function GetCalendarResources ( _
	userId As Integer _
) As DataSet
Visual C++
public:
DataSet^ GetCalendarResources(
	int userId
)

Parameters

userId
Type: System..::.Int32
Id of the user.

Return Value

DataSet containing all the resource information of all the resources visible to a user. This DataSet consists of a single DataTable with the following columns.
  • resourceId (System.Int32)Id of the resource.
  • ResourceName (System.String)Name of the resource.
  • ResourceType (System.String)Type of the resource.
  • ResourceTypeId (System.Int32)Id of the type of the resource.

See Also