Compartir a través de


Clase OperationNames

Contains the field names and corresponding values for operations that users can perform on items in SQL Server Reporting Services.

Jerarquía de herencia

System. . :: . .Object
  Microsoft.ReportingServices.Interfaces..::..OperationNames

Espacio de nombres:  Microsoft.ReportingServices.Interfaces
Ensamblados:   Microsoft.ReportingServices.Interfaces (en Microsoft.ReportingServices.Interfaces.dll)
  Microsoft.ReportingServices.SharePoint.UI.WebParts (en Microsoft.ReportingServices.SharePoint.UI.WebParts.dll)

Sintaxis

'Declaración
Public NotInheritable Class OperationNames
'Uso
Dim instance As OperationNames
public sealed class OperationNames
public ref class OperationNames sealed
[<SealedAttribute>]
type OperationNames =  class end
public final class OperationNames

El tipo OperationNames expone los siguientes miembros.

Constructores

  Nombre Descripción
Método público OperationNames

Arriba

Métodos

  Nombre Descripción
Método público Equals (Se hereda de Object.)
Método protegido Finalize (Se hereda de Object.)
Método público GetHashCode (Se hereda de Object.)
Método público GetType (Se hereda de Object.)
Método protegido MemberwiseClone (Se hereda de Object.)
Método público ToString (Se hereda de Object.)

Arriba

Campos

  Nombre Descripción
Campo públicoMiembro estático ExecuteReportDefinition
Campo públicoMiembro estático OperCancelJobs Specifies the operation "Cancel Jobs".
Campo públicoMiembro estático OperCreateAnySubscription Specifies the operation "Create Any Subscription".
Campo públicoMiembro estático OperCreateDatasource Specifies the operation "Create data source".
Campo públicoMiembro estático OperCreateFolder Specifies the operation "Create Folder".
Campo públicoMiembro estático OperCreateLink Specifies the operation "Create Link".
Campo públicoMiembro estático OperCreateModel
Campo públicoMiembro estático OperCreateReport Specifies the operation "Create Report".
Campo públicoMiembro estático OperCreateResource Specifies the operation "Create Resource".
Campo públicoMiembro estático OperCreateRoles Specifies the operation "Create Roles".
Campo públicoMiembro estático OperCreateSchedules Specifies the operation "Create Schedules".
Campo públicoMiembro estático OperCreateSnapshot Specifies the operation "Create Report History".
Campo públicoMiembro estático OperCreateSubscription Specifies the operation "Create Subscription".
Campo públicoMiembro estático OperDelete Specifies the operation "Delete".
Campo públicoMiembro estático OperDeleteAnySubscription Specifies the operation "Delete Any Subscription".
Campo públicoMiembro estático OperDeleteHistory Specifies the operation "Delete Report History".
Campo públicoMiembro estático OperDeleteRoles Specifies the operation "Delete Roles".
Campo públicoMiembro estático OperDeleteSchedules Specifies the operation "Delete Schedules".
Campo públicoMiembro estático OperDeleteSubscription Specifies the operation "Delete Subscription".
Campo públicoMiembro estático OperExecute Specifies the operation "Execute".
Campo públicoMiembro estático OperExecuteAndView Specifies the operation "Execute and View".
Campo públicoMiembro estático OperGenerateEvents Specifies the operation "Generate Events".
Campo públicoMiembro estático OperListHistory Specifies the operation "List Report History".
Campo públicoMiembro estático OperListJobs Specifies the operation "List Jobs".
Campo públicoMiembro estático OperManageSharedSchedules Specifies the operation "Manage Shared Schedules".
Campo públicoMiembro estático OperReadAnySubscription Specifies the operation "Read Any Subscription".
Campo públicoMiembro estático OperReadAuthorizationPolicy Specifies the operation "Read Security Policies".
Campo públicoMiembro estático OperReadContent Specifies the operation "Read Content".
Campo públicoMiembro estático OperReadDatasources Specifies the operation "Read Data Sources".
Campo públicoMiembro estático OperReadModelItemSecurityPolicies
Campo públicoMiembro estático OperReadParameters Specifies the operation "Read Parameters".
Campo públicoMiembro estático OperReadPolicy Specifies the operation "Read Policy".
Campo públicoMiembro estático OperReadProperties Specifies the operation "Read System Properties".
Campo públicoMiembro estático OperReadReportDefinition Specifies the operation "Read Report Definition".
Campo públicoMiembro estático OperReadRoleProperties Specifies the operation "Read Role Properties".
Campo públicoMiembro estático OperReadSchedules Specifies the operation "Read Schedules".
Campo públicoMiembro estático OperReadSubscription Specifies the operation "Read Subscription".
Campo públicoMiembro estático OperReadSystemProperties
Campo públicoMiembro estático OperReadSystemSecurityPolicy Specifies the operation "Read System Security Policies".
Campo públicoMiembro estático OperUpdateAnySubscription Specifies the operation "Update Any Subscription".
Campo públicoMiembro estático OperUpdateContent Specifies the operation "Update Content".
Campo públicoMiembro estático OperUpdateDatasources Specifies the operation "Update Data Sources".
Campo públicoMiembro estático OperUpdateDeleteAuthorizationPolicy Specifies the operation "Update Security Policies".
Campo públicoMiembro estático OperUpdateModelItemSecurityPolicies
Campo públicoMiembro estático OperUpdateParameters Specifies the operation "Update Parameters".
Campo públicoMiembro estático OperUpdatePolicy Specifies the operation "Update Policy".
Campo públicoMiembro estático OperUpdateProperties Specifies the operation "Update Properties".
Campo públicoMiembro estático OperUpdateReportDefinition Specifies the operation "Update Report Definition".
Campo públicoMiembro estático OperUpdateRoleProperties Specifies the operation "Update Role Properties".
Campo públicoMiembro estático OperUpdateSchedules Specifies the operation "Update Schedules".
Campo públicoMiembro estático OperUpdateSubscription Specifies the operation "Update Subscription".
Campo públicoMiembro estático OperUpdateSystemProperties Specifies the operation "Update System Properties".
Campo públicoMiembro estático OperUpdateSystemSecurityPolicy Specifies the operation "Update System Security Policies."

Arriba

Comentarios

The OperationNames class contains fields that represent the constant string values for operation names in Reporting Services. These operation names can be used by your security extension to return a list of permissions for a user of a given item in the report server database. For more information, see the GetPermissions method of the IAuthorizationExtension interface.

You can develop Report Server Web service client applications in such a way as to provide functionality and appearance based on the permissions of the current user. Client applications, such as Report Manager, rely on the Web service method GetPermissions to return a set of permission names that correspond to operations in Reporting Services. When a client makes a call to GetPermissions, the Web service responds with a set of permissions based on the item being accessed and the user making the request. A typical call to the root or Home item in the report server database for a user that is assigned the Browser Role might look like the following:

// C# Web service code
string[] permissions = rs.GetPermissions("/");

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

The above code returns a single permission for Browser users: Read Properties. The user is granted access to view the contents and properties, but not to modify or delete the contents. Nor is the user allowed to update security policies or view data source information. The Browser role is a very restrictive role.

Because clients can call GetPermissions in order to discover what permissions the user has, a client application can be tailored for each user. In Report Manager, Browser users do not have access to the Security Properties or Data Source Properties pages for a report. Nor is a Browser user permitted to see site settings or other administrator information, because Report Manager makes a call to GetPermissions and determines ahead of time which pages and tabs to display. Because of a client application's reliance on named permissions, your security extension must implement the GetPermissions method of the IAuthorizationExtension interface.

To support your implementation of GetPermissions, the security extension API provides you with the OperationNames class, which contains a set of constant fields representing each of the available permissions in Reporting Services. When you implement GetPermissions, you should analyze the security descriptor for the item and the current user and return a list of permissions based on the access control list for the current user.

Seguridad para subprocesos

Cualquier miembro público static (Shared en Visual Basic) de este tipo es seguro para subprocesos. No se garantiza que los miembros de instancia sean seguros para subprocesos.