Beispiel #1
0
        /// <summary>
        /// Provides example code for the BlogMLPost.PostTypeByName(string) method
        /// </summary>
        public static void PostTypeByNameExample()
        {
            BlogMLPostType postType = BlogMLPost.PostTypeByName("normal");

            if (postType == BlogMLPostType.Normal)
            {
            }
        }
        /// <summary>
        /// Provides example code for the BlogMLPost.PostTypeByName(string) method
        /// </summary>
        public static void PostTypeByNameExample()
        {
            #region PostTypeByName(string name)
            BlogMLPostType postType = BlogMLPost.PostTypeByName("normal");

            if (postType == BlogMLPostType.Normal)
            {
            }
            #endregion
        }