IsSubmitted property
bool?
get
IsSubmitted
Implementation
// String InReplyTo
// {
// get { return (string)this.PropertyBag[ItemSchema.InReplyTo]; }
// set { this.PropertyBag[ItemSchema.InReplyTo] = value; }
// }
/// <summary>
/// Gets a value indicating whether the message has been submitted to be sent.
/// </summary>
bool? get IsSubmitted => this.PropertyBag[ItemSchema.IsSubmitted] as bool?;