示例#1
0
        /// <summary>
        /// The function checks if a pwentry is a normal pwentry. That means
        /// it is no spcial KeeShareEntry
        /// </summary>
        /// <param name="entry"></param>
        /// <returns>True if the PwEntry is no special OwdShareEntry</returns>
        public static bool IsNormalPwEntry(this PwEntry entry)
        {
            Debug.Assert(null != entry);

            return(!entry.HasKeeShareAttributes());
        }