コード例 #1
0
        /// <summary>
        /// Gets the unsigned int value from the specified <see cref="PropertyKey"/>
        /// </summary>
        /// <param name="key">The property being requested</param>
        /// <returns>The unsigned integer value of the specified property</returns>
        public uint GetUInt32(PropertyKey key)
        {
            uint iVal;

            _pItem.GetUInt32(key.MarshalledPointer, out iVal);
            return(iVal);
        }