MonoTouch.Dialog.JsonObjectExtensions.b C# (CSharp) Method

b() public static method

public static b ( this json, string name ) : bool
json this
name string
return bool
		public static bool b(this JsonObject json, string name){
			if (json!=null && json.ContainsKey(name))
				return json[name];
			
			return false;
		}