System.Windows.PropertyPath.PropertyPath C# (CSharp) Method

PropertyPath() public method

public PropertyPath ( string path ) : System
path string
return System
		public PropertyPath (string path, params object [] pathParameters)
		{
			if (pathParameters == null)
				throw new NullReferenceException ();
			else if (pathParameters.Length > 0)
				throw new ArgumentOutOfRangeException ();
			
			this.path = path;
		}

Same methods

PropertyPath::PropertyPath ( object parameter ) : System
PropertyPath