Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 2.24 KB

using-the-setting-class-for-a-delivery-extension.md

File metadata and controls

26 lines (22 loc) · 2.24 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic ms.custom helpviewer_keywords
Use the Setting class for a delivery extension
Learn how delivery extensions can use the Setting class, which stores information that the delivery extension needs to deliver notifications and reports.
maggiesMSFT
maggies
09/25/2024
reporting-services
extensions
reference
updatefrequency5
delivery extensions [Reporting Services], settings
Setting class

Use the Setting class for a delivery extension

The xref:Microsoft.ReportingServices.Interfaces.Setting class is located in the xref:Microsoft.ReportingServices.Interfaces namespace and represents information about extension settings for a delivery extension. The xref:Microsoft.ReportingServices.Interfaces.Setting class provides infrastructure for storing information about the settings that are required in order for a delivery extension to function properly. For example, in Report Server E-Mail delivery, a user is required to supply settings specific to e-mail delivery, such as the recipient's address, the sender's address, the subject line of the e-mail, and more. Undoubtedly, your custom delivery providers require the user to supply specific settings in order for the delivery extension to deliver notifications and reports.

The xref:Microsoft.ReportingServices.Interfaces.Setting class is used when implementing the xref:Microsoft.ReportingServices.Interfaces.IDeliveryExtension.ExtensionSettings%2A property of the xref:Microsoft.ReportingServices.Interfaces.IDeliveryExtension interface. The xref:Microsoft.ReportingServices.Interfaces.Setting class is also used for processing the extension setting data that is supplied by a user when a subscription or notification is created.

For an example of how to use the xref:Microsoft.ReportingServices.Interfaces.Setting class, see SQL Server Reporting Services Product Samples.

Related content