Checks if the photo gallery can be managed by the specified user.

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

Syntax

C#
public virtual bool IsPhotoGalleryManageableByUser(
	Guid currentUserId,
	Guid galleryUserId,
	Nullable<Guid> groupId
)
Visual Basic
Public Overridable Function IsPhotoGalleryManageableByUser ( 
	currentUserId As Guid,
	galleryUserId As Guid,
	groupId As Nullable(Of Guid)
) As Boolean
Visual C++
public:
virtual bool IsPhotoGalleryManageableByUser(
	Guid currentUserId, 
	Guid galleryUserId, 
	Nullable<Guid> groupId
)
F#
abstract IsPhotoGalleryManageableByUser : 
        currentUserId : Guid * 
        galleryUserId : Guid * 
        groupId : Nullable<Guid> -> bool 
override IsPhotoGalleryManageableByUser : 
        currentUserId : Guid * 
        galleryUserId : Guid * 
        groupId : Nullable<Guid> -> bool 

Parameters

currentUserId
Type: System..::..Guid
Current user Id
galleryUserId
Type: System..::..Guid
Gallery user Id
groupId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
Group Id

Return Value

Type: Boolean
True if the manageable by the specified user, false otherwise.

See Also