// Token: 0x06002180 RID: 8576 RVA: 0x000BFE74 File Offset: 0x000BE074
 public string GetItemId()
 {
     if (this.conversationMode)
     {
         ConversationId itemProperty  = this.GetItemProperty <ConversationId>(ConversationItemSchema.ConversationId);
         byte[]         itemProperty2 = this.GetItemProperty <byte[]>(ItemSchema.InstanceKey);
         if (itemProperty != null)
         {
             return(OwaStoreObjectId.CreateFromConversationIdForListViewNotification(itemProperty, this.folderId, itemProperty2).ToString());
         }
         return(null);
     }
     else
     {
         VersionedId itemProperty3 = this.GetItemProperty <VersionedId>(ItemSchema.Id);
         if (itemProperty3 != null)
         {
             return(OwaStoreObjectId.CreateFromItemId(itemProperty3.ObjectId, this.folderId, OwaStoreObjectIdType.MailBoxObject, null).ToString());
         }
         return(null);
     }
 }