ParentFolderId property

FolderId? ParentFolderId
Get or sets the MimeContentUTF8 of this item. Gets the Id of the parent folder of this item.

Implementation

// MimeContentUTF8 MimeContentUTF8
//        {
//            get { return (MimeContentUTF8)this.PropertyBag[ItemSchema.MimeContentUTF8]; }
//            set { this.PropertyBag[ItemSchema.MimeContentUTF8] = value; }
//        }

/// <summary>
/// Gets the Id of the parent folder of this item.
/// </summary>
FolderId? get ParentFolderId =>
    this.PropertyBag[ItemSchema.ParentFolderId] as FolderId?;