public static void Main()
var jsonString = "{ someBooleanProperty: true }";
var result = JsonConvert.DeserializeObject<SomeClassType>(jsonString);
Console.WriteLine(string.Format("Value of SomeBooleanProperty: {0}", result.SomeBooleanProperty));
public class SomeClassType
public bool SomeBooleanProperty { get; set; }