using System.Collections.Generic;
using Newtonsoft.Json.Linq;
public static void Main()
""href"": ""http://localhost:54398/""
""href"": ""http://localhost:54398/BusPartner"",
""href"": ""http://localhost:54398/BusPartnerType"",
""busPartnerPossAttrib"": {
""href"": ""http://localhost:54398/BusPartnerPossAttribs"",
List<string> tt = JObject.Parse(json)
.Where(jp => jp.Name == "href" && jp.Value.Type == JTokenType.String)
.Select(jp => (string)jp.Value)
Console.Write(string.Join(Environment.NewLine, tt));