ReportingService2005.ValidateExtensionSettings Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Validates Reporting Services extension settings.
public:
cli::array <ReportService2005::ExtensionParameter ^> ^ ValidateExtensionSettings(System::String ^ Extension, cli::array <ReportService2005::ParameterValueOrFieldReference ^> ^ ParameterValues);
public ReportService2005.ExtensionParameter[] ValidateExtensionSettings (string Extension, ReportService2005.ParameterValueOrFieldReference[] ParameterValues);
member this.ValidateExtensionSettings : string * ReportService2005.ParameterValueOrFieldReference[] -> ReportService2005.ExtensionParameter[]
Public Function ValidateExtensionSettings (Extension As String, ParameterValues As ParameterValueOrFieldReference()) As ExtensionParameter()
Parameters
- Extension
- 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
.
- ParameterValues
- ParameterValueOrFieldReference[]
An array of ParameterValueOrFieldReference objects representing the settings to validate for the extension.
Returns
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
parameterSettings 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 oftrue
.
Note
Currently, the ValidateExtensionSettings method supports delivery extensions. Other extensions are not yet supported by this method.