IsSubmitted property

bool? IsSubmitted
Gets or sets the In-Reply-To reference of this item. Gets a value indicating whether the message has been submitted to be sent.

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?;