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

o() public static method

public static o ( this json, string name ) : JsonValue
json this
name string
return System.Json.JsonValue
		public static JsonValue o(this JsonObject json, string name){
			if (json!=null && json.ContainsKey(name))
				return json[name];
			
			return null;
		}