Gets the user rating for the content.

Namespace: MonoSoftware.MonoX.BusinessLayer
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
Nullable<int> GetUserRating(
	Guid parentEntityId,
	int parentEntityType,
	Guid userId
)
Visual Basic
Function GetUserRating ( 
	parentEntityId As Guid,
	parentEntityType As Integer,
	userId As Guid
) As Nullable(Of Integer)
Visual C++
Nullable<int> GetUserRating(
	Guid parentEntityId, 
	int parentEntityType, 
	Guid userId
)
F#
abstract GetUserRating : 
        parentEntityId : Guid * 
        parentEntityType : int * 
        userId : Guid -> Nullable<int> 

Parameters

parentEntityId
Type: System..::..Guid
Parent entity id
parentEntityType
Type: System..::..Int32
Parent entity type
userId
Type: System..::..Guid
User Id

Return Value

Type: Nullable<(Of <(<'Int32>)>)>
User rating of the content

See Also