當前位置: 首頁>>代碼示例>>C#>>正文


C# Media.GetProperty方法代碼示例

本文整理匯總了C#中umbraco.cms.businesslogic.media.Media.GetProperty方法的典型用法代碼示例。如果您正苦於以下問題:C# Media.GetProperty方法的具體用法?C# Media.GetProperty怎麽用?C# Media.GetProperty使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在umbraco.cms.businesslogic.media.Media的用法示例。


在下文中一共展示了Media.GetProperty方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: GetHtmlForFile

        /// <summary>
        /// Gets the HTML for file.
        /// </summary>
        /// <param name="media">The media.</param>
        /// <returns></returns>
        private string GetHtmlForFile(Media media)
        {
            // check that its not null
            if (media != null)
            {
                // get the img src
                var file = media.GetProperty<string>(Constants.Umbraco.Media.File);

                // check that the file has a value
                if (!string.IsNullOrEmpty(file))
                {
                    // define the anchor tag
                    var anchor = "<a href=\"{0}\">{1}</a>";

                    // format the anchor tag
                    return string.Format(anchor, file, media.Text);
                }
            }

            // fall-back return an empty string
            return string.Empty;
        }
開發者ID:bokmadsen,項目名稱:uComponents,代碼行數:27,代碼來源:GetMedia.cs

示例2: GetHtmlForImage

        /// <summary>
        /// Gets the HTML for an image tag, using the Media Id.
        /// </summary>
        /// <param name="media">The media.</param>
        /// <returns>Returns a HTML image tag from a Media Id.</returns>
        private string GetHtmlForImage(Media media)
        {
            // check that its not null
            if (media != null)
            {
                // get the img src
                var src = media.GetProperty<string>(Constants.Umbraco.Media.File);

                // check that the img src has a value
                if (!string.IsNullOrEmpty(src))
                {
                    // define the img tag
                    var img = "<img src=\"{0}\" alt=\"{1}\" height=\"{2}\" width=\"{3}\" />";

                    // get the height
                    var height = media.GetProperty<int>(Constants.Umbraco.Media.Height);
                    if (height <= 0)
                    {
                        height = (int)this.Height.Value;
                    }

                    // get the width
                    var width = media.GetProperty<int>(Constants.Umbraco.Media.Width);
                    if (width <= 0)
                    {
                        width = (int)this.Width.Value;
                    }

                    // if the default dimensions are less then zero...
                    if (height <= 0 && width <= 0)
                    {
                        // default the height & width to 100px;
                        height = 100;
                        width = 100;
                    }

                    // format the img tag
                    return string.Format(img, src, media.Text, height, width);
                }
            }

            // fall-back return an empty string
            return string.Empty;
        }
開發者ID:bokmadsen,項目名稱:uComponents,代碼行數:49,代碼來源:GetMedia.cs


注:本文中的umbraco.cms.businesslogic.media.Media.GetProperty方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。