2.2.3.5 Member

This element contains information about a member of the workspace. This element is defined as follows:

 <s:element name="Member">
   <s:complexType>
     <s:all>
       <s:element name="ID" type="s:integer"/>
       <s:element name="Name" type="s:string"/>
       <s:element name="LoginName" type="s:string"/>
       <s:element name="Email" type="s:string" minOccurs="0"/>
       <s:element name="IsDomainGroup" minOccurs="0">
         <s:simpleType>
           <s:restriction base="s:string">
             <s:enumeration value="True" />
             <s:enumeration value="False" />
             </s:restriction>
         </s:simpleType>
       </s:element>
     </s:all>
   </s:complexType>
  </s:element>

ID: A positive integer that MUST uniquely identify a user or group

Name: A string that contains a friendly name for the user or group.

LoginName: Represents the name used to log on to the protocol server. If IsDomainGroup is set to True, this field MUST be empty.

E-mail: A string containing the e-mail address of the user. If IsDomainGroup is set to True, this field MUST be empty.

IsDomainGroup: A Boolean value specifying whether this record is associated with a user or group. When its value is True, it is a group. When its value is False, it is a user.