Get privacy levels for specified field.

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

Syntax

C#
EntityCollection<PrivacyLevelEntity> GetPrivacyLevelsForUser(
	Guid userId,
	string objectTypeFullName,
	string fieldName
)
Visual Basic
Function GetPrivacyLevelsForUser ( 
	userId As Guid,
	objectTypeFullName As String,
	fieldName As String
) As EntityCollection(Of PrivacyLevelEntity)
Visual C++
EntityCollection<PrivacyLevelEntity^>^ GetPrivacyLevelsForUser(
	Guid userId, 
	String^ objectTypeFullName, 
	String^ fieldName
)
F#
abstract GetPrivacyLevelsForUser : 
        userId : Guid * 
        objectTypeFullName : string * 
        fieldName : string -> EntityCollection<PrivacyLevelEntity> 

Parameters

userId
Type: System..::..Guid
User id
objectTypeFullName
Type: System..::..String
Object type full name
fieldName
Type: System..::..String
Field name

Return Value

Type: EntityCollection<(Of <(<'PrivacyLevelEntity>)>)>
Privacy levels

See Also