MonoTouch.Dialog.JsonElement.LoadRadio C# (CSharp) 메소드

LoadRadio() 정적인 개인적인 메소드

static private LoadRadio ( System.Json.JsonObject json, object data ) : Element
json System.Json.JsonObject
data object
리턴 Element
		static Element LoadRadio (JsonObject json, object data)
		{
			var caption = GetString (json, "caption");
			var group = GetString (json, "group");

			if (group != null)
				return new RadioElement (caption, group);
			else
				return new RadioElement (caption);
		}