Class SendDocumentArgs
Represents the mail message arguments passed to the SendDocument method of the ReportsControllerBase.
Inheritance
Namespace: Telerik.Reporting.Services.WebApi
Assembly: Telerik.Reporting.Services.WebApi.dll
Syntax
public class SendDocumentArgs
Constructors
SendDocumentArgs()
Declaration
public SendDocumentArgs()
Properties
Body
Gets or sets the mail message Body part.
Declaration
public string Body { get; set; }
Property Value
System.String
|
Cc
Gets or sets the mail message Cc part.
Declaration
public string Cc { get; set; }
Property Value
System.String
|
From
Gets or sets the mail message From part.
Declaration
public string From { get; set; }
Property Value
System.String
|
Subject
Gets or sets the mail message Subject part.
Declaration
public string Subject { get; set; }
Property Value
System.String
|
To
Gets or sets the mail message To part.
Declaration
public string To { get; set; }
Property Value
System.String
|