예제 #1
0
        /// <summary>
        /// Provides example code for the BlogMLTextConstruct.ConstructTypeByName(string) method
        /// </summary>
        public static void ConstructTypeByNameExample()
        {
            BlogMLContentType contentType = BlogMLTextConstruct.ConstructTypeByName("html");

            if (contentType == BlogMLContentType.Html)
            {
            }
        }
예제 #2
0
        /// <summary>
        /// Provides example code for the BlogMLTextConstruct.ConstructTypeByName(string) method
        /// </summary>
        public static void ConstructTypeByNameExample()
        {
            #region ConstructTypeByName(string name)
            BlogMLContentType contentType = BlogMLTextConstruct.ConstructTypeByName("html");

            if (contentType == BlogMLContentType.Html)
            {
            }
            #endregion
        }