{"id":9785,"date":"2025-05-25T20:02:30","date_gmt":"2025-05-25T11:02:30","guid":{"rendered":"https:\/\/www.auctionpro.co.kr\/?p=9785"},"modified":"2025-05-25T20:02:30","modified_gmt":"2025-05-25T11:02:30","slug":"c-xml-data-%ec%b6%94%ec%b6%9c","status":"publish","type":"post","link":"https:\/\/www.auctionpro.co.kr\/?p=9785","title":{"rendered":"C# XML Data \ucd94\ucd9c"},"content":{"rendered":"\n<h5 class=\"wp-block-heading\">C#\uc5d0\uc11c <code>&lt;![CDATA[ ... ]]><\/code> \uc548\uc758 \ub0b4\uc6a9\uc744 \ucd94\ucd9c\ud558\ub824\uba74 <code>System.Xml<\/code> \ub124\uc784\uc2a4\ud398\uc774\uc2a4\uc758 <code>XmlDocument<\/code> \ub610\ub294 <code>XDocument<\/code>\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/h5>\n\n\n\n<h3 class=\"wp-block-heading\">\u2705 \ubc29\ubc95 1: <code>XmlDocument<\/code>\ub97c \uc0ac\uc6a9\ud558\ub294 \uc608\uc81c<\/h3>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:c# decode:true \" >using System;\nusing System.Xml;\n\nclass Program\n{\n    static void Main()\n    {\n        string xml = @\"&lt;?xml version=\"\"1.0\"\" encoding=\"\"UTF-8\"\"?&gt;\n&lt;Receipt&gt;\n&lt;CONTENT&gt;\n&lt;![CDATA[&lt;head xmlns:js=\"\"javascript:code\"\"&gt;\n  &lt;meta http-equiv=\"\"X-UA-Compatible\"\" content=\"\"IE=Edge;\"\" \/&gt;\n  &lt;meta http-equiv=\"\"Content-Type\"\" content=\"\"text\/html; charset=UTF-8\"\" \/&gt;\n  &lt;meta name=\"\"viewport\"\" content=\"\"width=device-width, initial-scale=1.0\"\" \/&gt;\n  &lt;link rel=\"\"preconnect\"\" href=\"\"https:\/\/fonts.googleapis.com\"\" \/&gt;\n  &lt;link rel=\"\"preconnect\"\" href=\"\"https:\/\/fonts.gstatic.com\"\" \/&gt;\n  &lt;link href=\"\"https:\/\/fonts.googleapis.com\/css2?family=Noto+Sans+KR:wght@400;700;family=Noto+Sans:wght@700;display=swap\"\" rel=\"\"stylesheet\"\" \/&gt;\n&lt;\/head&gt;]]&gt;\n&lt;\/CONTENT&gt;\n&lt;\/Receipt&gt;\";\n\n        XmlDocument doc = new XmlDocument();\n        doc.LoadXml(xml);\n\n        var cdataContent = doc.SelectSingleNode(\"\/\/CONTENT\").InnerText;\n\n        Console.WriteLine(cdataContent);\n    }\n}\n<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">\u2705 \ubc29\ubc95 2: <code>XDocument<\/code> (LINQ to XML) \ubc29\uc2dd<\/h3>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:c# decode:true \" >using System;\nusing System.Xml.Linq;\n\nclass Program\n{\n    static void Main()\n    {\n        string xml = @\"&lt;?xml version=\"\"1.0\"\" encoding=\"\"UTF-8\"\"?&gt;\n&lt;Receipt&gt;\n&lt;CONTENT&gt;&lt;![CDATA[&lt;head&gt;...&lt;\/head&gt;]]&gt;&lt;\/CONTENT&gt;\n&lt;\/Receipt&gt;\";\n\n        XDocument doc = XDocument.Parse(xml);\n        string cdata = doc.Root.Element(\"CONTENT\").Value;\n\n        Console.WriteLine(cdata);\n    }\n}\n<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">\u2705 \uacb0\uacfc<\/h3>\n\n\n\n<p>\ucd9c\ub825\uc740 CDATA \ub0b4\ubd80\uc758 HTML:<\/p>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:c# decode:true \" >&lt;head xmlns:js=\"javascript:code\"&gt;\n  &lt;meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge;\" \/&gt;\n  &lt;meta http-equiv=\"Content-Type\" content=\"text\/html; charset=UTF-8\" \/&gt;\n  ...\n&lt;\/head&gt;\n<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>C#\uc5d0\uc11c &lt;![CDATA[ &#8230; ]]&gt; \uc548\uc758 \ub0b4\uc6a9\uc744 \ucd94\ucd9c\ud558\ub824\uba74 System.Xml \ub124\uc784\uc2a4\ud398\uc774\uc2a4\uc758 XmlDocument \ub610\ub294 XDocument\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \u2705 \ubc29\ubc95 1: XmlDocument\ub97c \uc0ac\uc6a9\ud558\ub294 \uc608\uc81c \u2705 \ubc29\ubc95 2: XDocument <a class=\"mh-excerpt-more\" href=\"https:\/\/www.auctionpro.co.kr\/?p=9785\" title=\"C# XML Data \ucd94\ucd9c\">[&#8230;]<\/a><\/p>\n<\/div>","protected":false},"author":6,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[258,10],"tags":[],"class_list":["post-9785","post","type-post","status-publish","format-standard","hentry","category-c-linq","category-devc"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>C# XML Data \ucd94\ucd9c - AuctionPro<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.auctionpro.co.kr\/?p=9785\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C# XML Data \ucd94\ucd9c - AuctionPro\" \/>\n<meta property=\"og:description\" content=\"C#\uc5d0\uc11c &lt;![CDATA[ ... ]]&gt; \uc548\uc758 \ub0b4\uc6a9\uc744 \ucd94\ucd9c\ud558\ub824\uba74 System.Xml \ub124\uc784\uc2a4\ud398\uc774\uc2a4\uc758 XmlDocument \ub610\ub294 XDocument\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \u2705 \ubc29\ubc95 1: XmlDocument\ub97c \uc0ac\uc6a9\ud558\ub294 \uc608\uc81c \u2705 \ubc29\ubc95 2: XDocument [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.auctionpro.co.kr\/?p=9785\" \/>\n<meta property=\"og:site_name\" content=\"AuctionPro\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-25T11:02:30+00:00\" \/>\n<meta name=\"author\" content=\"golgol\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"golgol\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9785#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9785\"},\"author\":{\"name\":\"golgol\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\"},\"headline\":\"C# XML Data \ucd94\ucd9c\",\"datePublished\":\"2025-05-25T11:02:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9785\"},\"wordCount\":9,\"commentCount\":0,\"articleSection\":[\"[C#] LINQ\",\"[Dev]C#\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9785#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9785\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9785\",\"name\":\"C# XML Data \ucd94\ucd9c - AuctionPro\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#website\"},\"datePublished\":\"2025-05-25T11:02:30+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9785#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9785\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9785#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"C# XML Data \ucd94\ucd9c\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#website\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/\",\"name\":\"AuctionPro\",\"description\":\"\uc625\uc158\ud504\ub85c\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\",\"name\":\"golgol\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?author=6\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"C# XML Data \ucd94\ucd9c - AuctionPro","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.auctionpro.co.kr\/?p=9785","og_locale":"ko_KR","og_type":"article","og_title":"C# XML Data \ucd94\ucd9c - AuctionPro","og_description":"C#\uc5d0\uc11c &lt;![CDATA[ ... ]]&gt; \uc548\uc758 \ub0b4\uc6a9\uc744 \ucd94\ucd9c\ud558\ub824\uba74 System.Xml \ub124\uc784\uc2a4\ud398\uc774\uc2a4\uc758 XmlDocument \ub610\ub294 XDocument\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \u2705 \ubc29\ubc95 1: XmlDocument\ub97c \uc0ac\uc6a9\ud558\ub294 \uc608\uc81c \u2705 \ubc29\ubc95 2: XDocument [...]","og_url":"https:\/\/www.auctionpro.co.kr\/?p=9785","og_site_name":"AuctionPro","article_published_time":"2025-05-25T11:02:30+00:00","author":"golgol","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"golgol","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.auctionpro.co.kr\/?p=9785#article","isPartOf":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=9785"},"author":{"name":"golgol","@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2"},"headline":"C# XML Data \ucd94\ucd9c","datePublished":"2025-05-25T11:02:30+00:00","mainEntityOfPage":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=9785"},"wordCount":9,"commentCount":0,"articleSection":["[C#] LINQ","[Dev]C#"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.auctionpro.co.kr\/?p=9785#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.auctionpro.co.kr\/?p=9785","url":"https:\/\/www.auctionpro.co.kr\/?p=9785","name":"C# XML Data \ucd94\ucd9c - AuctionPro","isPartOf":{"@id":"https:\/\/www.auctionpro.co.kr\/#website"},"datePublished":"2025-05-25T11:02:30+00:00","author":{"@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2"},"breadcrumb":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=9785#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.auctionpro.co.kr\/?p=9785"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.auctionpro.co.kr\/?p=9785#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/www.auctionpro.co.kr\/"},{"@type":"ListItem","position":2,"name":"C# XML Data \ucd94\ucd9c"}]},{"@type":"WebSite","@id":"https:\/\/www.auctionpro.co.kr\/#website","url":"https:\/\/www.auctionpro.co.kr\/","name":"AuctionPro","description":"\uc625\uc158\ud504\ub85c","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.auctionpro.co.kr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2","name":"golgol","url":"https:\/\/www.auctionpro.co.kr\/?author=6"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/9785","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=9785"}],"version-history":[{"count":0,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/9785\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=9785"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=9785"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=9785"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}