References property

String? References
Gets or sets the references of the e-mail message.

Implementation

String? get References =>
    this.PropertyBag[EmailMessageSchema.References] as String?;
void References=(String? value)

Implementation

set References(String? value) =>
    this.PropertyBag[EmailMessageSchema.References] = value;