Partager via


Méthode ReportingService2006.GetPermissions

Returns the user permissions that are associated with a particular item in a SharePoint library.

Espace de noms :  ReportService2006
Assembly :  ReportService2006 (en ReportService2006.dll)

Syntaxe

'Déclaration
Public Function GetPermissions ( _
    Item As String _
) As String()
'Utilisation
Dim instance As ReportingService2006 
Dim Item As String 
Dim returnValue As String()

returnValue = instance.GetPermissions(Item)
public string[] GetPermissions(
    string Item
)
public:
array<String^>^ GetPermissions(
    String^ Item
)
member GetPermissions : 
        Item:string -> string[] 
public function GetPermissions(
    Item : String
) : String[]

Paramètres

  • Item
    Type : System.String
    The fully qualified URL of the item including the file name and extension.

Valeur de retour

Type : array<System.String[]
An array of String objects that contains a list of permissions associated with the assigned tasks and roles of the item for the current user.

Notes

The table below shows header and permissions information on this operation.

SOAP Headers

(In) TrustedUserHeaderValue

(Out) ServerInfoHeaderValue

Required Permissions

None

Exemples

using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;

class Sample
{
    static void Main(string[] args)
    {
        ReportingService2006 rs = new ReportingService2006();
        rs.Url = "http://<Server Name>" +
            "/_vti_bin/ReportServer/ReportService2006.asmx";
        rs.Credentials = 
            System.Net.CredentialCache.DefaultCredentials;

        try
        {
            String[] permissions = 
                rs.GetPermissions(
                    "http://<Server Name>/Docs/Documents" +
                    "/AdventureWorks Sample Reports/" +
                    "Sales Order Detail.rdl");

            foreach (string perm in permissions)
            {
                Console.WriteLine(perm);
            }
        }

        catch (SoapException e)
        {
            Console.WriteLine(e.Detail.InnerXml.ToString());
        }
    }
}
Imports System
Imports System.IO
Imports System.Text
Imports System.Web.Services
Imports System.Web.Services.Protocols

Class Sample

    Public Shared Sub Main()

        Dim rs As New ReportingService2006()
        rs.Url = "http://<Server Name>" + _
            "/_vti_bin/ReportServer/ReportService2006.asmx"
        rs.Credentials = _
            System.Net.CredentialCache.DefaultCredentials

        Try
            Dim permissions As [String]() = _
                rs.GetPermissions("http://<Server Name>" + _
                    "/Docs/Documents/AdventureWorks Sample " + _
                    "Reports/Sales Order Detail.rdl")

            Dim perm As String
            For Each perm In permissions
                Console.WriteLine(perm)
            Next perm

        Catch e As SoapException
            Console.WriteLine(e.Detail.InnerXml.ToString())
        End Try

    End Sub

End Class

Voir aussi

Référence

ReportingService2006 Classe

Espace de noms ReportService2006