{"id":11185,"date":"2022-09-26T11:08:59","date_gmt":"2022-09-26T05:38:59","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/"},"modified":"2022-09-26T11:08:59","modified_gmt":"2022-09-26T05:38:59","slug":"solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/","title":{"rendered":"[Solved] C# How to get all values of all rows in a dataGridView and pass it into another form"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-46308860\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"46308860\" data-parentid=\"46306622\" data-score=\"1\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>Here&#8217;s a minimal, but working example.<\/p>\n<p>You can pass any type, to any method&#8230; for as long as the method is expecting the type as incoming parameter.<\/p>\n<blockquote>\n<p>private void DoSomething(string withThisString)<\/p>\n<\/blockquote>\n<p>In that method declaration, I declared that &#8230;<\/p>\n<ol>\n<li>the method is private <em>aka accessible to this class only<\/em><\/li>\n<li>the method returns <code>void<\/code> <em>aka does not return anything<\/em><\/li>\n<li>the method name is <code>DoSomething<\/code><\/li>\n<li>the method is expecting a <code>string<\/code> parameter<\/li>\n<\/ol>\n<p>You want to do something similar in your case. But you&#8230; you don&#8217;t want to be passing <code>string<\/code> as parameter, you want to pass <code>DataGridViewRow<\/code>&#8230; Actually no&#8230; you want to pass <em>multiple rows<\/em> so lets aggregate the rows in a <code>List&lt;DataGridViewRow&gt;<\/code> and we&#8217;ll pass a list of rows, instead of passing a single row.<\/p>\n<pre><code>List&lt;DataGridViewRow&gt; listofrows = new List&lt;DataGridViewRow&gt;();\/\/we'll agregate our desired rows in this\n\/\/itterate through the rows of the DataGridView\nforeach (DataGridViewRow item in dgv1.Rows)\n{\n    DataGridViewRow r = (DataGridViewRow)item.Clone();\/\/clone the desired row\n    \/\/Oddly enough... cloning does not clone the values... So lets put the values back in their cells\n    for (int i = 0; i &lt; item.Cells.Count; i++)\n    {\n        r.Cells[i].Value = item.Cells[i].Value;\n    }\n    listofrows.Add(r);\/\/add the row to the list\n}\n<\/code><\/pre>\n<p>Also, you don&#8217;t want to be passing that parameter to <code>DoSomething<\/code>, you want to pass it to the method that is responsible of &#8220;initializing&#8221; the Form2.<\/p>\n<p>By default, when you create a new form&#8230; the form constructor is written like this<\/p>\n<pre><code>public Form2()\n{\n    InitializeComponent();\n}\n<\/code><\/pre>\n<p><code>public Form2()<\/code> as we can see in the <code>()<\/code>, this method is not expecting any parameters to work. Actually, even if you wanted to, you couldn&#8217;t pass it anything because that method is not ready for anything. It just works <em>alone<\/em>&#8230;<\/p>\n<p>But you want to pass around some <code>DataGridViewRow<\/code>, so lets modify the method declaration a bit<\/p>\n<pre><code>public Form2(List&lt;DataGridViewRow&gt; dgvc = null)\n{\n    InitializeComponent();\n}\n<\/code><\/pre>\n<p><code>public Form2(List&lt;DataGridViewRow&gt; dgvc = null)<\/code> as we can see in the <code>()<\/code>, this method is now expecting to receive a <code>List&lt;DataGridViewRow&gt;<\/code> to work.<\/p>\n<p>Now that <code>Form2<\/code> is expecting the parameter I have for it&#8230; We can use it once we are done making our list of rows!<\/p>\n<pre><code>\/\/Make an instance of Form2, passing it the list of Rows we just created\nForm2 f2 = new Form2(listofrows);\nf2.Show();\/\/show the form\n<\/code><\/pre>\n<p>Having said all that. To accomplish your goal, at a high level, you want to<\/p>\n<ol>\n<li>iterate through the rows of your DataGridView<\/li>\n<li>accumulate the desired rows in a <code>List<\/code> or whatever you pick<\/li>\n<li>pass the <code>List<\/code> as parameter to Form2<\/li>\n<li>have Form2 perform whatever task you want with the incoming <code>List<\/code> of <code>DataGridViewRow<\/code><\/li>\n<\/ol>\n<p>Form1.cs<\/p>\n<pre><code>using System;\nusing System.Collections.Generic;\nusing System.ComponentModel;\nusing System.Drawing;\nusing System.Windows.Forms;\n\nnamespace DataGridViewRowsToForm2_46306622\n{\n    public partial class Form1 : Form\n    {\n\n        DataGridView dgv1 = new DataGridView();\n        BindingList&lt;dgventry&gt; dgv1Data = new BindingList&lt;dgventry&gt;();\n        Button btn = new Button();\n\n        public Form1()\n        {\n            InitializeComponent();\n            InitializeGrid();\n            AddButton();\n            AddData();\n        }\n\n        private void AddButton()\n        {\n            btn.Location = new Point(5, dgv1.Location.Y + dgv1.Height + 5);\n            btn.Text = \"Click to pass rows\";\n            btn.Click += Btn_Click;\n            this.Controls.Add(btn);\n        }\n\n        private void Btn_Click(object sender, EventArgs e)\n        {\n            List&lt;DataGridViewRow&gt; listofrows = new List&lt;DataGridViewRow&gt;();\n            foreach (DataGridViewRow item in dgv1.Rows)\n            {\n                DataGridViewRow r = (DataGridViewRow)item.Clone();\n                for (int i = 0; i &lt; item.Cells.Count; i++)\n                {\n                    r.Cells[i].Value = item.Cells[i].Value;\n                }\n                listofrows.Add(r);\n            }\n            Form2 f2 = new Form2(listofrows);\n            f2.Show();\n        }\n\n        private void AddData()\n        {\n            for (int i = 0; i &lt; 5; i++)\n            {\n                dgv1Data.Add(new dgventry\n                {\n                    col1 = \"row \" + i,\n                    col2 = i.ToString(),\n                    col3 = i.ToString()\n                });\n            }\n\n        }\n\n        private void InitializeGrid()\n        {\n            dgv1.Location = new Point(5, 5);\n            dgv1.DataSource = dgv1Data;\n            this.Controls.Add(dgv1);\n        }\n    }\n\n    public class dgventry\n    {\n        public string col1 { get; set; }\n        public string col2 { get; set; }\n        public string col3 { get; set; }\n    }\n}\n<\/code><\/pre>\n<p>Form2.cs<\/p>\n<pre><code>using System.Collections.Generic;\nusing System.Drawing;\nusing System.Windows.Forms;\n\nnamespace DataGridViewRowsToForm2_46306622\n{\n    public partial class Form2 : Form\n    {\n        \/\/Have a form constructor that accepts your GridViewRows as argument\n        public Form2(List&lt;DataGridViewRow&gt; dgvc = null)\n        {\n            InitializeComponent();\n            TextBox txtbx = new TextBox();\n            txtbx.Location = new Point(5, 5);\n            if (dgvc != null)\n            {\n                \/\/iterate through the rows and do what you want with them\n                foreach (DataGridViewRow item in dgvc)\n                {\n                    txtbx.Text += item.Cells[0].Value + \"https:\/\/stackoverflow.com\/\";\n                }\n            }\n            this.Controls.Add(txtbx);\n        }\n    }\n}\n<\/code><\/pre>\n<p>Some people will suggest passing the <code>DataSource<\/code> instead. Sure, that will work&#8230; for as long as your <code>DataSource<\/code> matches the content of the <code>DataGridView<\/code>; It&#8217;s not necessarily the case all the time so pick your poison accordingly.<\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\"><\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved C# How to get all values of all rows in a dataGridView and pass it into another form <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] Here&#8217;s a minimal, but working example. You can pass any type, to any method&#8230; for as long as the method is expecting the type as incoming parameter. private void DoSomething(string withThisString) In that method declaration, I declared that &#8230; the method is private aka accessible to this class only the method returns void aka &#8230; <a title=\"[Solved] C# How to get all values of all rows in a dataGridView and pass it into another form\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/\" aria-label=\"More on [Solved] C# How to get all values of all rows in a dataGridView and pass it into another form\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[324,1739,391],"class_list":["post-11185","post","type-post","status-publish","format-standard","hentry","category-solved","tag-c","tag-datagridview","tag-loops"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] C# How to get all values of all rows in a dataGridView and pass it into another form - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] C# How to get all values of all rows in a dataGridView and pass it into another form - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] Here&#8217;s a minimal, but working example. You can pass any type, to any method&#8230; for as long as the method is expecting the type as incoming parameter. private void DoSomething(string withThisString) In that method declaration, I declared that &#8230; the method is private aka accessible to this class only the method returns void aka ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-26T05:38:59+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] C# How to get all values of all rows in a dataGridView and pass it into another form\",\"datePublished\":\"2022-09-26T05:38:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/\"},\"wordCount\":383,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"c++\",\"datagridview\",\"loops\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/\",\"name\":\"[Solved] C# How to get all values of all rows in a dataGridView and pass it into another form - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-09-26T05:38:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] C# How to get all values of all rows in a dataGridView and pass it into another form\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] C# How to get all values of all rows in a dataGridView and pass it into another form - JassWeb","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:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] C# How to get all values of all rows in a dataGridView and pass it into another form - JassWeb","og_description":"[ad_1] Here&#8217;s a minimal, but working example. You can pass any type, to any method&#8230; for as long as the method is expecting the type as incoming parameter. private void DoSomething(string withThisString) In that method declaration, I declared that &#8230; the method is private aka accessible to this class only the method returns void aka ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/","og_site_name":"JassWeb","article_published_time":"2022-09-26T05:38:59+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] C# How to get all values of all rows in a dataGridView and pass it into another form","datePublished":"2022-09-26T05:38:59+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/"},"wordCount":383,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["c++","datagridview","loops"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/","url":"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/","name":"[Solved] C# How to get all values of all rows in a dataGridView and pass it into another form - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-09-26T05:38:59+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-c-how-to-get-all-values-of-all-rows-in-a-datagridview-and-pass-it-into-another-form\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] C# How to get all values of all rows in a dataGridView and pass it into another form"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/11185","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=11185"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/11185\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=11185"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=11185"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=11185"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}