SPGroup.ContainsCurrentUser Property
Gets a Boolean value that indicates whether the group contains the current user, included either through direct or indirect membership.
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: Yes
Available in SharePoint Online
Syntax
Visual Basic (Declaration)
Public ReadOnly Property ContainsCurrentUser As Boolean Get
Visual Basic (Usage)
Dim instance As SPGroup Dim value As Boolean value = instance.ContainsCurrentUser
C#
public bool ContainsCurrentUser { get; }
Property Value
Type: System.Booleantrue if the group contains the current user; otherwise, false. For example, if the group object contains a domain group that contains the current user, this property returns true.
Remarks
The ExplicitlyContainsCurrentUser property does not consider indirect membership.
See Also