예제 #1
0
        /// <summary>
        /// Gets all byte array values from the supplied attribute of the object.
        /// </summary>
        /// <param name="attributeName">The name of the attribute to retreive.</param>
        /// <returns>The values of the attribute, or null if it could not be found.</returns>
        public byte[][] GetByteAttributeValues(string attributeName)
        {
            // Refresh the entry data if needed to get the attribute name specified.
            RefreshEntryIfNeededToRetrieveAttribute(attributeName);

            // Get all values from the attribute.
            return(AD.GetByteAttributeValues(attributeName, Entry));
        }