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

s() public static method

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