Membership Element (Query)

Applies to: SharePoint Foundation 2010

Defines a filter based on the type of membership for the user.

<Membership
  Type = "Text">
</ Membership>

Attributes

Attribute

Description

Type

Required Text. Specifies the type of membership for the user. Possible values include the following:

  • SPWeb.AllUsers

  • SPGroup

  • SPWeb.Groups

  • CurrentUserGroups

  • SPWeb.Users

Child Elements

FieldRef

Parent Elements

And, Or, Where

Occurrences

Minimum: 0

Maximum: Unbounded

Remarks

The following example defines a filter for cases where the user is either assigned a task based on membership in a group or assigned a task directly.

<Or>
  <Membership Type=\"CurrentUserGroups\">
    <FieldRef Name=\"AssignedTo\"/>
  </Membership>
  <Eq>
    <FieldRef Name=\"AssignedTo\"></FieldRef>
    <Value Type=\"Integer\">
      <UserID/>
    </Value>
  </Eq>
</Or>