i have following dictionary in string,object format.
Dictionary<string, object> responseList = null;
responseList = new JavaScriptSerializer().Deserialize<Dictionary<string, object>>(response["Content"]);
In above dictionary I have following JSON data.
> { "_links": {
> "account": {
> "href": "https://api-uat.dwolla.com/accounts/ec297a2c-f681-417b-9668-8f3ebcd33060",
> "type": "application/vnd.dwolla.v1.hal+json",
> "resource-type": "account"
> },
> "events": {
> "href": "https://api-uat.dwolla.com/events",
> "type": "application/vnd.dwolla.v1.hal+json",
> "resource-type": "event"
> },
> "webhook-subscriptions": {
> "href": "https://api-uat.dwolla.com/webhook-subscriptions",
> "type": "application/vnd.dwolla.v1.hal+json",
> "resource-type": "webhook-subscription"
> },
> "customers": {
> "href": "https://api-uat.dwolla.com/customers",
> "type": "application/vnd.dwolla.v1.hal+json",
> "resource-type": "customer"
> } } }
I want to retrieve href of account section which is "https://api-uat.dwolla.com/accounts/ec297a2c-f681-417b-9668-8f3ebcd33060". I have retrieved object part of dictionary by
var result = responseList["_links"];
How would I process this object variable further to retrieve href value of "account"? thank you in anticipation