Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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: 
  | 
Child Elements
Parent Elements
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>