MonoTouch.Dialog.BindingContext.BindingContext C# (CSharp) Method

BindingContext() public method

public BindingContext ( object callbacks, object o, string title ) : System
callbacks object
o object
title string
return System
		public BindingContext (object callbacks, object o, string title)
		{
			if (o == null)
				throw new ArgumentNullException ("o");
			
			mappings = new Dictionary<Element,MemberAndInstance> ();
			
			Root = new RootElement (title);
			Populate (callbacks, o, Root);
		}