Bloom.Book.Book.GetLayoutChoices C# (CSharp) Метод

GetLayoutChoices() публичный Метод

public GetLayoutChoices ( ) : IEnumerable
Результат IEnumerable
        public IEnumerable<Layout> GetLayoutChoices()
        {
            try
            {
                return SizeAndOrientation.GetLayoutChoices(OurHtmlDom, _storage.GetFileLocator());
            }
            catch (Exception error)
            {
                _log.WriteError(error.Message);
                throw error;
            }
        }
Book