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

Returns an array of the security objects as it is represented in the database.

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

Syntax

C#
public SecurityObject[] GetSecurityObjectsRaw(
	int groupId,
	BusinessConstants..::.ObjectType oType,
	int objectId
)
Visual Basic (Declaration)
Public Function GetSecurityObjectsRaw ( _
	groupId As Integer, _
	oType As BusinessConstants..::.ObjectType, _
	objectId As Integer _
) As SecurityObject()
Visual C++
public:
array<SecurityObject^>^ GetSecurityObjectsRaw(
	int groupId, 
	BusinessConstants..::.ObjectType oType, 
	int objectId
)

Parameters

groupId
Type: System..::.Int32
The unique id of the group.
oType
Type: OfficeClip.BusinessLayer..::.BusinessConstants..::.ObjectType
The unique id of the object type
objectId
Type: System..::.Int32
The unique id of the object

Return Value

The array of the security object. A null represents some error.

See Also