/*
         * Returns the virtual path of the corresponding generated file.
         * Note the filepath needs to be a full path.
         */
        public string GetGeneratedFileVirtualPath(string filePath)
        {
            Debug.Trace("CBM", "GetGeneratedFileVirtualPath " + filePath);

            if (filePath == null)
            {
                throw new ArgumentNullException("filePath");
            }

            EnsureHostCreated();

            return(_host.GetGeneratedFileVirtualPath(filePath));
        }