ReportingService2005.ValidateExtensionSettings Method (String, ParameterValueOrFieldReference )

 

Applies To: SQL Server 2016 Preview

Validates Reporting Services extension settings.

Namespace:   ReportService2005
Assembly:  ReportService2005 (in ReportService2005.dll)

Syntax

public ExtensionParameter[] ValidateExtensionSettings(
    string Extension,
    ParameterValueOrFieldReference[] ParameterValues
)
public:
array<ExtensionParameter^>^ ValidateExtensionSettings(
    String^ Extension,
    array<ParameterValueOrFieldReference^>^ ParameterValues
)
member ValidateExtensionSettings : 
        Extension:string *
        ParameterValues:ParameterValueOrFieldReference[] -> ExtensionParameter[]
Public Function ValidateExtensionSettings (
    Extension As String,
    ParameterValues As ParameterValueOrFieldReference()
) As ExtensionParameter()

Parameters

  • Extension
    Type: System.String

    The name of the extension as it appears in the report server configuration file. Valid values are Report Server Email and Report Server FileShare.

Return Value

Type: ReportService2005.ExtensionParameter[]

An array of ExtensionParameter objects that contain validated extension settings and any required settings that were not specified.

Remarks

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

SOAP Headers

(Out) ServerInfoHeaderValue

Required Permissions

None

The ExtensionParameter objects that are returned by the ValidateExtensionSettings method contain the following items:

  • All valid setting values specified in the ParameterValues parameter

  • Settings with values that are not valid contain an error message (Error property of the ExtensionParameter class).

  • The names of all required settings that were not specified in the ParameterValues parameter with a Required property of the ExtensionParameter class set to a value of true.

Note

Currently, the ValidateExtensionSettings method supports delivery extensions. Other extensions are not yet supported by this method.

See Also

ReportingService2005 Class
ReportService2005 Namespace

Return to top