MonoTouch.Dialog.JsonBindingContext.Fetch C# (CSharp) 메소드

Fetch() 공개 메소드

public Fetch ( ) : string>.Dictionary
리턴 string>.Dictionary
		public Dictionary<string, string> Fetch ()
		{
			var result = new Dictionary<string, string>();
			foreach (var el in _elements){
				if (!string.IsNullOrEmpty(el.ID) && _fetchFunctions.ContainsKey(el.GetType())){
					result.Add(el.ID, _fetchFunctions[el.GetType()](el));
				}
			}
			
			return result;
		}