Beispiel #1
0
        /// <summary>
        /// Returns the specified named binary attachment from the TagFile located at the supplied TagPath.
        /// </summary>
        public byte[] GetTagAttachent(TagPath path)
        {
            // First, get the TagFile represented by this path.
            // TODO: This has no exception handling, so.. yeah..
            TagFile file = GetTagFile(path);

            return(file.GetAttachmentRevision(path.AttachmentName));
        }