CCNet.Build.Confluence.PageDocument.BuildImage C# (CSharp) 메소드

BuildImage() 공개 정적인 메소드

Builds "Image" block.
public static BuildImage ( string imageUrl ) : System.Xml.Linq.XElement
imageUrl string
리턴 System.Xml.Linq.XElement
		public static XElement BuildImage(string imageUrl)
		{
			return Element(
				"ac:image",
				Element(
					"ri:url",
					Attribute("ri:value", imageUrl)));
		}