System.Windows.Data.Binding.Binding C# (CSharp) Method

Binding() public method

public Binding ( string path ) : System.ComponentModel
path string
return System.ComponentModel
		public Binding (string path)
		{
			if (path == null)
				throw new ArgumentNullException ("path");
			
			Mode = BindingMode.OneWay;
			Path = new PropertyPath (path);
			UpdateSourceTrigger = UpdateSourceTrigger.Default;
		}

Same methods

Binding::Binding ( ) : System.ComponentModel