ValidateExtensionSettings Method
SQL Server 2000
ReportingService.ValidateExtensionSettings Method
Validates Reporting Services extension settings.
Public Function ValidateExtensionSettings( _ ByVal Extension As String _ ByVal ParameterValues() As [Namespace].ParameterValueOrFieldReference _ ) As String Member of [Namespace].ReportingService
public ExtensionParameter[] ValidateExtensionSettings( string Extension, [Namespace].ParameterValueOrFieldReference[] ParameterValues ); Member of [Namespace].ReportingService
Parameters
- Extension
- 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
- An array of ParameterValueOrFieldReference[] objects representing the settings to validate for the extension.
Return Value
An array of ExtensionParameter[] objects that contain validated extension settings and any required settings that were not specified.
Remarks
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.