ReportingService2010.GetSystemProperties(Property[]) Method

Definition

Returns the value of one or more system properties.

public:
 cli::array <ReportService2010::Property ^> ^ GetSystemProperties(cli::array <ReportService2010::Property ^> ^ Properties);
[System.Web.Services.Protocols.SoapDocumentMethod("http://schemas.microsoft.com/sqlserver/reporting/2010/03/01/ReportServer/GetSystemProperties", ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped, RequestNamespace="http://schemas.microsoft.com/sqlserver/reporting/2010/03/01/ReportServer", ResponseNamespace="http://schemas.microsoft.com/sqlserver/reporting/2010/03/01/ReportServer", Use=System.Web.Services.Description.SoapBindingUse.Literal)]
[System.Web.Services.Protocols.SoapHeader("ServerInfoHeaderValue", Direction=System.Web.Services.Protocols.SoapHeaderDirection.Out)]
[System.Web.Services.Protocols.SoapHeader("TrustedUserHeaderValue")]
public ReportService2010.Property[] GetSystemProperties (ReportService2010.Property[] Properties);
[<System.Web.Services.Protocols.SoapDocumentMethod("http://schemas.microsoft.com/sqlserver/reporting/2010/03/01/ReportServer/GetSystemProperties", ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped, RequestNamespace="http://schemas.microsoft.com/sqlserver/reporting/2010/03/01/ReportServer", ResponseNamespace="http://schemas.microsoft.com/sqlserver/reporting/2010/03/01/ReportServer", Use=System.Web.Services.Description.SoapBindingUse.Literal)>]
[<System.Web.Services.Protocols.SoapHeader("ServerInfoHeaderValue", Direction=System.Web.Services.Protocols.SoapHeaderDirection.Out)>]
[<System.Web.Services.Protocols.SoapHeader("TrustedUserHeaderValue")>]
member this.GetSystemProperties : ReportService2010.Property[] -> ReportService2010.Property[]
Public Function GetSystemProperties (Properties As Property()) As Property()

Parameters

Properties
Property[]

An array of Property objects that contains the names of the properties for which you want to retrieve values.

Returns

An array of Property objects that contains the value of one or more system properties.

Attributes

Remarks

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

SOAP Header Usage (In) TrustedUserHeaderValue

(Out) ServerInfoHeaderValue
Native Mode Required Permissions ReadSystemProperties for all properties in the Properties array.
SharePoint Mode Required Permissions <xref:Microsoft.SharePoint.SPBasePermissions.Open> on all properties in Properties

Use the GetSystemProperties method to retrieve the complete set of user-defined and reserved system properties. For a list of the reserved system properties in the report server database, see Report Server System Properties.

If the Properties parameter is null (Nothing in Visual Basic), the GetSystemProperties method returns all system properties that the user has the permission to view. In SharePoint integrated mode, if the user has <xref:Microsoft.SharePoint.SPBasePermissions.Open> permission for the Web site, then the method returns all system properties to which the user has <xref:Microsoft.SharePoint.SPBasePermissions.Open> permission. If the user does not have the <xref:Microsoft.SharePoint.SPBasePermissions.Open> permission for the Web site, the the method returns all non-permissioned system properties.

If a requested property is not found, no error is returned. The property is returned without a value.

Returns properties if the user has appropriate permissions to access the site collection for the Central Administration Web site.

Applies to