1 write to body
System (1)
net\System\Net\mail\MailMessage.cs (1)
197
body
= value;
11 references to body
System (11)
net\System\Net\mail\MailMessage.cs (11)
193
return (
body
!= null ?
body
: String.Empty);
199
if (bodyEncoding == null &&
body
!= null) {
200
if (MimeBasePart.IsAscii(
body
,true)) {
298
if (!string.IsNullOrEmpty(
body
)) {
299
bodyView = AlternateView.CreateAlternateViewFromString(
body
, bodyEncoding, (isBodyHtml?MediaTypeNames.Text.Html:null));
306
if (!string.IsNullOrEmpty(
body
)) {
307
bodyView = AlternateView.CreateAlternateViewFromString(
body
, bodyEncoding, (isBodyHtml?MediaTypeNames.Text.Html:null));
332
if (!string.IsNullOrEmpty(
body
)) {
333
bodyView = AlternateView.CreateAlternateViewFromString(
body
, bodyEncoding, null);
384
else if (viewsPart.Parts.Count == 1 && string.IsNullOrEmpty(
body
))