Ejemplo n.º 1
0
 private static StoreObjectType?TryDetectShortcutMessageEntryStoreObjectType(ICorePropertyBag propertyBag, string itemClass, StoreObjectType detectedType)
 {
     if (detectedType != StoreObjectType.Message || !ObjectClass.IsShortcutMessageEntry(propertyBag.GetValueOrDefault <int>(CoreItemSchema.FavLevelMask, -1)))
     {
         return(null);
     }
     return(new StoreObjectType?(StoreObjectType.ShortcutMessage));
 }