SPPolicyRoleCollection.Xml property
Gets an XML representation of the policy role collection.
Namespace: Microsoft.SharePoint.Administration
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public ReadOnly Property Xml As String
Get
'Usage
Dim instance As SPPolicyRoleCollection
Dim value As String
value = instance.Xml
public string Xml { get; }
Property value
Type: System.String
A string that contains an XML representation of the policy role collection, such as the following:
<PolicyRoleCollection>
<PolicyRole Name="Full Control" Description="Has full control." DenyRightsMask="EmptyMask" GrantRightsMask="FullMask" />
<PolicyRole Name="Full Read" Description="Has full read-only access." DenyRightsMask="EmptyMask" GrantRightsMask="ViewListItems, OpenItems, ViewVersions, ViewFormPages, Open, ViewPages, ViewUsageData, BrowseDirectories, BrowseUserInfo, UseClientIntegration, UseRemoteAPIs, EnumeratePermissions" />
<PolicyRole Name="Deny Write" Description="Has no write access." DenyRightsMask="4611685812065333150" GrantRightsMask="EmptyMask" />
<PolicyRole Name="Deny All" Description="Has no access." DenyRightsMask="FullMask" GrantRightsMask="EmptyMask" /> </PolicyRoleCollection>